summaryrefslogtreecommitdiff
path: root/daemon/misc.c
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2003-09-29 21:33:48 +0000
committerGeorge Lebl <jirka@src.gnome.org>2003-09-29 21:33:48 +0000
commit4a1f1b22cb6dac873c0388e12956eeb4949bbe64 (patch)
tree3be8b40313f6b613712c8710cb5db4dba97256fd /daemon/misc.c
parent508b254e93e86f61a206ce6910bcf526563219c0 (diff)
downloadgdm-4a1f1b22cb6dac873c0388e12956eeb4949bbe64.tar.gz
Be more careful with shell stuff and quote whatever we can, should fix rh
Mon Sep 29 14:32:18 2003 George Lebl <jirka@5z.com> * config/PreSession.in, config/PostSession.in, config/XKeepsCrashing, config/Xsession.in: Be more careful with shell stuff and quote whatever we can, should fix rh #105858. * daemon/misc.c, config/XKeepsCrashing: Don't use gdialog as it's nowdays just a wrapper on zenity
Diffstat (limited to 'daemon/misc.c')
-rw-r--r--daemon/misc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/daemon/misc.c b/daemon/misc.c
index 9cef6738..7656ecf6 100644
--- a/daemon/misc.c
+++ b/daemon/misc.c
@@ -459,8 +459,6 @@ gdm_text_message_dialog (const char *msg)
dialog = g_find_program_in_path ("dialog");
if (dialog == NULL)
- dialog = g_find_program_in_path ("gdialog");
- if (dialog == NULL)
dialog = g_find_program_in_path ("whiptail");
if (dialog != NULL) {
char *argv[6];
@@ -528,8 +526,6 @@ gdm_text_yesno_dialog (const char *msg, gboolean *ret)
dialog = g_find_program_in_path ("dialog");
if (dialog == NULL)
- dialog = g_find_program_in_path ("gdialog");
- if (dialog == NULL)
dialog = g_find_program_in_path ("whiptail");
if (dialog != NULL) {
char *argv[6];