Fix a logic typo.
--- trunk/launchd/src/libbootstrap.c 2007-03-04 01:28:51 UTC (rev 23127)
+++ trunk/launchd/src/libbootstrap.c 2007-03-04 03:51:11 UTC (rev 23128)
@@ -110,7 +110,7 @@
kern_return_t kr;
mach_port_t puc;
- if (!pthread_main_np() && (stat("/AppleInternal", &sb) != -1)) {
+ if (pthread_main_np() && (stat("/AppleInternal", &sb) != -1)) {
_vproc_log(LOG_WARNING, "Please review the comments in 4890134.");
}