summaryrefslogtreecommitdiff
path: root/src/progress.c
diff options
context:
space:
mode:
authorGlynn Foster <glynn.foster@sun.com>2004-06-17 23:38:39 +0000
committerGlynn Foster <gman@src.gnome.org>2004-06-17 23:38:39 +0000
commit6c68b70ca3bb5ea719c5044a2e5d7959f87b1a06 (patch)
treefc7bda92de24d7344e1b6178e90f215fdb8922ad /src/progress.c
parentc7ec5229bbf0328687ae1deef58c9fae906b34f2 (diff)
Patch from Luke Suchocki to send HUP to parent instead of itself. Fixes
2004-06-18 Glynn Foster <glynn.foster@sun.com> * THANKS, src/about.c, src/progress.c: Patch from Luke Suchocki to send HUP to parent instead of itself. Fixes #144542.
Diffstat (limited to 'src/progress.c')
-rw-r--r--src/progress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/progress.c b/src/progress.c
index 3cc4bd9..5804e88 100644
--- a/src/progress.c
+++ b/src/progress.c
@@ -228,7 +228,7 @@ zenity_progress_dialog_response (GtkWidget *widget, int response, gpointer data)
* I'm pretty sure there is a nice way to do this, but I'm clueless about this
* stuff. Should be using SIGHUP instead of 1 though.
*/
- kill (getpid (), 1);
+ kill (getppid (), 1);
zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL);
gtk_main_quit ();
break;