Changeset 23451
- Timestamp:
- 11/30/07 12:47:06 (12 months ago)
- Files:
-
- 1 modified
-
trunk/launchd/src/launchd_unix_ipc.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/launchd/src/launchd_unix_ipc.c
r23274 r23451 125 125 } else { 126 126 snprintf(ourdir, sizeof(ourdir), "/tmp/launchd-%u.XXXXXX", getpid()); 127 if (!launchd_assumes(mkdtemp(ourdir) != NULL)) { 127 if (mkdtemp(ourdir) == NULL) { 128 runtime_syslog(LOG_ERR, "Could not create critical directory \"%s\": %m", ourdir); 128 129 goto out_bad; 129 130 }

