diff options
-rw-r--r-- | launchd/privileged_startx/server.c | 4 | ||||
-rw-r--r-- | launchd/user_startx/launchd_startx.c | 2 |
2 files changed, 3 insertions, 3 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 diff --git a/launchd/user_startx/launchd_startx.c b/launchd/user_startx/launchd_startx.c index a2fc9f0..3d1e03e 100644 --- a/launchd/user_startx/launchd_startx.c +++ b/launchd/user_startx/launchd_startx.c @@ -52,7 +52,7 @@ int main(int argc, char **argv, char **envp) { exit(EXIT_FAILURE); } - aslc = asl_open(BUNDLE_ID_PREFIX".startx", "user", ASL_OPT_NO_DELAY); + aslc = asl_open(BUNDLE_ID_PREFIX".startx", BUNDLE_ID_PREFIX, ASL_OPT_NO_DELAY); (void)console_redirect(aslc, NULL, ASL_LEVEL_INFO, ASL_LEVEL_NOTICE); assert(posix_spawnp(&child, argv[1], NULL, NULL, &argv[1], envp) == 0); |