From a2e3422f5725dec68db7072dabf0b882d0fe2c81 Mon Sep 17 00:00:00 2001 From: dusanx Date: Mon, 27 Apr 2009 17:23:51 +0200 Subject: Exec external scripts --- uzbl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'uzbl.c') diff --git a/uzbl.c b/uzbl.c index 0562fac..c224f09 100644 --- a/uzbl.c +++ b/uzbl.c @@ -229,7 +229,7 @@ run_command(const char *command, const char *args) { GString* to_execute = g_string_new (""); gboolean result; g_string_printf (to_execute, "%s '%s' '%i' '%i' '%s' %s", command, config_file, (int) getpid() , (int) xwin, "/tmp/uzbl_25165827", args); - result = system(to_execute->str); + result = g_spawn_command_line_async (to_execute->str, NULL); printf("Called %s. Result: %s\n", to_execute->str, (result ? "FALSE" : "TRUE" )); return result; } -- cgit v1.2.3