diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-05-11 00:32:51 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-05-11 00:32:51 -0700 |
commit | 2771fbf28d6ee6cce09df0f245322d60e21795af (patch) | |
tree | 9349bed10c0192d0aee8a981bb95afecc06365cc /launchd/privileged_startx/server.c | |
parent | 4ca120d2d2a73d8a1595f15e04fc365a4ae20e78 (diff) |
launchd: syslog: Use facility org.x rather than user
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'launchd/privileged_startx/server.c')
-rw-r--r-- | launchd/privileged_startx/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launchd/privileged_startx/server.c b/launchd/privileged_startx/server.c index a34a196..99e6b37 100644 --- a/launchd/privileged_startx/server.c +++ b/launchd/privileged_startx/server.c @@ -122,7 +122,7 @@ int server_main(const char *dir) { #endif launch_data_t config = NULL, checkin = NULL, label = NULL; - const char *labelstr = "privileged_startx"; + const char *labelstr = BUNDLE_ID_PREFIX".privileged_startx"; aslclient aslc; checkin = launch_data_new_string(LAUNCH_KEY_CHECKIN); @@ -143,7 +143,7 @@ int server_main(const char *dir) { labelstr = launch_data_get_string(label); } - aslc = asl_open(labelstr, "user", ASL_OPT_NO_DELAY); + aslc = asl_open(labelstr, BUNDLE_ID_PREFIX, ASL_OPT_NO_DELAY); (void)console_redirect(aslc, NULL, ASL_LEVEL_INFO, ASL_LEVEL_NOTICE); #ifdef LAUNCH_JOBKEY_MACHSERVICES |