summaryrefslogtreecommitdiff
path: root/daemon
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2002-07-11 17:27:28 +0000
committerGeorge Lebl <jirka@src.gnome.org>2002-07-11 17:27:28 +0000
commitaf710c073bbac40a45d9e702c87199cee9bbf5d0 (patch)
treef78135fe690dc3d58d54d751a45fbbba6228a8b8 /daemon
parentce49de37240211dca3769d2a652d600de108dce1 (diff)
downloadgdm-af710c073bbac40a45d9e702c87199cee9bbf5d0.tar.gz
some indenting foo
Thu Jul 11 10:39:18 2002 George Lebl <jirka@5z.com> * daemon/gdm-net.c, daemon/xdmcp.c: some indenting foo * gui/gdmlogin.c, gui/gdmchooser.c, gui/greeter/greeter.c: Set the IO channels to be unbuffered just like in the daemon and set their encoding to NULL. We want to be as raw as possible * gui/gdmlogin.c, gui/greeter/greeter_item_pam.c: initially leave the prompt entry insensitive. Also initially set the entry to "..." in the greeter since otherwise it will be a little unresponsive to the first keystroke. Fixes #83187
Diffstat (limited to 'daemon')
-rw-r--r--daemon/gdm-net.c8
-rw-r--r--daemon/xdmcp.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/daemon/gdm-net.c b/daemon/gdm-net.c
index 722940c9..0297b9e8 100644
--- a/daemon/gdm-net.c
+++ b/daemon/gdm-net.c
@@ -221,7 +221,7 @@ gdm_socket_handler (GIOChannel *source,
}
unixchan = g_io_channel_unix_new (newconn->fd);
- g_io_channel_set_encoding(unixchan, NULL, NULL);
+ g_io_channel_set_encoding (unixchan, NULL, NULL);
g_io_channel_set_buffered (unixchan, FALSE);
newconn->source = g_io_add_watch_full
@@ -275,7 +275,7 @@ gdm_connection_open_unix (const char *sockname, mode_t mode)
conn->n_subconnections = 0;
unixchan = g_io_channel_unix_new (conn->fd);
- g_io_channel_set_encoding(unixchan, NULL, NULL);
+ g_io_channel_set_encoding (unixchan, NULL, NULL);
g_io_channel_set_buffered (unixchan, FALSE);
conn->source = g_io_add_watch_full
@@ -309,7 +309,7 @@ gdm_connection_open_fd (int fd)
conn->n_subconnections = 0;
unixchan = g_io_channel_unix_new (conn->fd);
- g_io_channel_set_encoding (unixchan, NULL, NULL);
+ g_io_channel_set_encoding (unixchan, NULL, NULL);
g_io_channel_set_buffered (unixchan, FALSE);
conn->source = g_io_add_watch_full
@@ -360,7 +360,7 @@ gdm_connection_open_fifo (const char *fifo, mode_t mode)
conn->n_subconnections = 0;
fifochan = g_io_channel_unix_new (conn->fd);
- g_io_channel_set_encoding (fifochan, NULL, NULL);
+ g_io_channel_set_encoding (fifochan, NULL, NULL);
g_io_channel_set_buffered (fifochan, FALSE);
conn->source = g_io_add_watch_full
diff --git a/daemon/xdmcp.c b/daemon/xdmcp.c
index dea249fc..f43df8b4 100644
--- a/daemon/xdmcp.c
+++ b/daemon/xdmcp.c
@@ -286,7 +286,7 @@ gdm_xdmcp_run (void)
GIOChannel *xdmcpchan;
xdmcpchan = g_io_channel_unix_new (gdm_xdmcpfd);
- g_io_channel_set_encoding (xdmcpchan, NULL, NULL);
+ g_io_channel_set_encoding (xdmcpchan, NULL, NULL);
g_io_channel_set_buffered (xdmcpchan, FALSE);
xdmcp_source = g_io_add_watch_full