Projects
Browse Source     Search     Timeline     Wiki

Changeset 23467

Show
Ignore:
Timestamp:
12/13/07 12:35:48 (12 months ago)
Author:
zarzycki@…
Message:

Fix a think-o.

Files:
1 modified

Legend:

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

    r23466 r23467  
    57385738        struct machservice *ms; 
    57395739        struct ldcred ldc; 
     5740        job_t jo; 
    57405741 
    57415742        if (!launchd_assumes(j != NULL)) { 
     
    57515752                return BOOTSTRAP_UNKNOWN_SERVICE; 
    57525753        } 
    5753         if (machservice_job(ms) != j) { 
     5754 
     5755        if ((jo = machservice_job(ms)) != j) { 
    57545756                if (last_warned_pid != ldc.pid) { 
    5755                         job_log(j, LOG_NOTICE, "Check-in of Mach service failed. The service \"%s\" is owned by: %s", servicename, j->label); 
     5757                        job_log(j, LOG_NOTICE, "Check-in of Mach service failed. The service \"%s\" is owned by: %s", servicename, jo->label); 
    57565758                        last_warned_pid = ldc.pid; 
    57575759                }