Projects
Browse Source     Search     Timeline     Wiki

Changeset 23010

Show
Ignore:
Timestamp:
01/12/07 08:47:30 (23 months ago)
Author:
zarzycki@…
Message:

Fix a think-o.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/launchd/src/launchctl.c

    r22980 r23010  
    28282828        } 
    28292829 
    2830         if (!WIFEXITED(wstatus) && WEXITSTATUS(wstatus) == EX_OSFILE) { 
     2830        if (WIFEXITED(wstatus) && WEXITSTATUS(wstatus) == EX_OSFILE) { 
    28312831                assumes(reboot(RB_AUTOBOOT) != -1); 
    28322832        }