[launchd-changes] [23128] trunk/launchd/src/libbootstrap.c

source_changes at macosforge.org source_changes at macosforge.org
Sat Mar 3 19:51:12 PST 2007


Revision: 23128
          http://trac.macosforge.org/projects/launchd/changeset/23128
Author:   zarzycki at apple.com
Date:     2007-03-03 19:51:11 -0800 (Sat, 03 Mar 2007)

Log Message:
-----------
Fix a logic typo.

Modified Paths:
--------------
    trunk/launchd/src/libbootstrap.c

Modified: trunk/launchd/src/libbootstrap.c
===================================================================
--- 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.");
 	}
 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/launchd-changes/attachments/20070303/557c939d/attachment.html


More information about the launchd-changes mailing list