From: Dana Jansens Date: Sat, 15 Oct 2011 19:37:58 +0000 (-0400) Subject: Check the return value for launching the startup command. X-Git-Tag: release-3.5.1~110 X-Git-Url: http://git.openbox.org/?p=dana%2Fopenbox.git;a=commitdiff_plain;h=0f18d0624db0729a67276b12e6073b48889edc21;hp=3991e148e2acbc3da3b9c31e2459b20a4e598a03 Check the return value for launching the startup command. Copy/paste error? --- diff --git a/openbox/openbox.c b/openbox/openbox.c index a7eb6a2..fbc01fd 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -576,7 +576,7 @@ static void run_startup_cmd(void) G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, NULL, &e); - if (!g_shell_parse_argv(startup_cmd, NULL, &argv, &e)) { + if (!ok) { g_message("Error launching startup command: %s", e->message); g_error_free(e);