diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-08-21 15:53:24 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-08-21 15:53:24 +0800 |
commit | f5f9c6a39d31b8484be7032418ebbde92ebdcb68 (patch) | |
tree | 023dcf9727e6ce4500e3b0746d817b48464dbd47 /shell/e-shell-window-commands.c | |
parent | e2a5d2a1c718623aaa99699a2be6d39a327a33c8 (diff) | |
download | gsoc2013-evolution-f5f9c6a39d31b8484be7032418ebbde92ebdcb68.tar.gz gsoc2013-evolution-f5f9c6a39d31b8484be7032418ebbde92ebdcb68.tar.zst gsoc2013-evolution-f5f9c6a39d31b8484be7032418ebbde92ebdcb68.zip |
Fix for bug 346797
svn path=/trunk/; revision=32609
Diffstat (limited to 'shell/e-shell-window-commands.c')
-rw-r--r-- | shell/e-shell-window-commands.c | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c index 789ce308f6..31531065c2 100644 --- a/shell/e-shell-window-commands.c +++ b/shell/e-shell-window-commands.c @@ -114,26 +114,22 @@ command_submit_bug (BonoboUIComponent *uih, EShellWindow *window, const char *path) { - int pid; - char *args[] = { - "bug-buddy", - "--sm-disable", - "--package=evolution", - "--package-ver="VERSION, - NULL - }; + gchar *command_line; + GError *error = NULL; - args[0] = g_find_program_in_path ("bug-buddy"); - if (!args[0]) { - e_notice (NULL, GTK_MESSAGE_ERROR, _("Bug buddy is not installed.")); - return; - } + command_line = "bug-buddy --sm-disable --package=Evolution"; - pid = gnome_execute_async (NULL, 4, args); - g_free (args[0]); + g_debug ("Spawning: %s", command_line); - if (pid == -1) - e_notice (NULL, GTK_MESSAGE_ERROR, _("Bug buddy could not be run.")); + if (!g_spawn_command_line_async (command_line, &error)) { + if (error->code == G_SPAWN_ERROR_NOENT) + e_notice (NULL, GTK_MESSAGE_ERROR, + _("Bug buddy is not installed.")); + else + e_notice (NULL, GTK_MESSAGE_ERROR, + _("Bug buddy could not be run.")); + g_error_free (error); + } } /* must be in utf8, the weird breaking of escaped strings |