summaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2003-07-23 21:33:08 +0000
committerGeorge Lebl <jirka@src.gnome.org>2003-07-23 21:33:08 +0000
commit927905304edfcde3ed814a9d3d2e5aeae2f9a761 (patch)
tree09457fab33828f120119078693701522a1f47410 /gui
parentc2377b30d51aee991708b99c18b5f642aacd9f8d (diff)
downloadgdm-927905304edfcde3ed814a9d3d2e5aeae2f9a761.tar.gz
whack some debug messages
Wed Jul 23 14:29:53 2003 George Lebl <jirka@5z.com> * gui/greeter/greeter.c: whack some debug messages * daemon/display.c, daemon/gdm.[ch], daemon/slave.c: open a pipe for the internal message connection rather then using the fifo. Use the fifo only as backup. This way we 1) reduce damage gdm user can cause 2) make things faster, no need to open and close the fifo on disk 20 times for each login. * daemon/gdm.c: add close notifies for the main connections and NULL the connection pointer when that happens * daemon/display.c, daemon/slave.c, daemon/server.c, daemon/misc.[ch], daemon/errorgui.c: The close_all_descriptors now takes 2 exception arguments, since we need to keep 2 fd's open for slaves now. * daemon/gdm-net.c: fix gdm_connection_open_fd (some copy/paste typos were present) * daemon/slave.c: don't run session_stop unless we already ran session_start, and cleanup send_chosen_host to use gdm_slave_send, also wrap the xioerror in gdm_in_signal as it could be
Diffstat (limited to 'gui')
-rw-r--r--gui/greeter/greeter.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/gui/greeter/greeter.c b/gui/greeter/greeter.c
index 599abf75..3e520e29 100644
--- a/gui/greeter/greeter.c
+++ b/gui/greeter/greeter.c
@@ -824,8 +824,6 @@ string_same (VeConfig *config, const char *cur, const char *key)
g_free (val);
return TRUE;
} else {
- syslog (LOG_ERR, "string not same: cur '%s' val '%s' key '%s'",
- cur, val, key);
g_free (val);
return FALSE;
}
@@ -838,8 +836,6 @@ bool_same (VeConfig *config, gboolean cur, const char *key)
if (ve_bool_equal (cur, val)) {
return TRUE;
} else {
- syslog (LOG_ERR, "bool not same: cur '%d' val '%d' key '%s'",
- cur, val, key);
return FALSE;
}
}
@@ -851,8 +847,6 @@ int_same (VeConfig *config, int cur, const char *key)
if (cur == val) {
return TRUE;
} else {
- syslog (LOG_ERR, "int not same: cur '%d' val '%d' key '%s'",
- cur, val, key);
return FALSE;
}
}
@@ -930,9 +924,6 @@ greeter_reread_config (int sig, gpointer data)
! int_same (config,
GdmTimedLoginDelay,
GDM_KEY_TIMED_LOGIN_DELAY)) {
- syslog (LOG_ERR, "something not same: "
- "theme '%s' theme_dir '%s'",
- theme, theme_dir);
/* Set busy cursor */
greeter_setup_cursor (GDK_WATCH);