Modified: trunk/launchd/src/launchd_runtime.c (23343 => 23344)
--- trunk/launchd/src/launchd_runtime.c 2007-08-17 19:34:42 UTC (rev 23343)
+++ trunk/launchd/src/launchd_runtime.c 2007-08-17 19:48:42 UTC (rev 23344)
@@ -725,8 +725,9 @@
}
if (launchd_assumes(kev.flags & EV_ERROR)) {
- if ((flags & EV_ADD) && !launchd_assumes(kev.data == 0)) {
- log_kevent_struct(LOG_ERR, &kev, 0);
+ if ((flags & EV_ADD) && kev.data) {
+ runtime_syslog(LOG_DEBUG, "%s(): See the next line...", __func__);
+ log_kevent_struct(LOG_DEBUG, &kev, 0);
errno = kev.data;
return -1;
}