diff options
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/gdm-session.c | 2 | ||||
-rw-r--r-- | daemon/gdm-session.xml | 2 | ||||
-rw-r--r-- | daemon/test-session-client.c | 4 |
3 files changed, 3 insertions, 5 deletions
diff --git a/daemon/gdm-session.c b/daemon/gdm-session.c index 982b5eba..63fe1c1f 100644 --- a/daemon/gdm-session.c +++ b/daemon/gdm-session.c @@ -3107,8 +3107,6 @@ gdm_session_select_session (GdmSession *self, } } -/* At some point we may want to read these right from - * the slave but for now I don't want the dependency */ static void set_display_name (GdmSession *self, const char *name) diff --git a/daemon/gdm-session.xml b/daemon/gdm-session.xml index 2a83087b..9d44005b 100644 --- a/daemon/gdm-session.xml +++ b/daemon/gdm-session.xml @@ -1,7 +1,7 @@ <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> <node name="/org/gnome/DisplayManager/Session"> <!-- methods are called by the session worker, - signals are emitted by the simple slave --> + signals are emitted by the main daemon --> <interface name="org.gnome.DisplayManager.WorkerManager"> <method name="Hello" /> <method name="InfoQuery"> diff --git a/daemon/test-session-client.c b/daemon/test-session-client.c index 0dba2891..a38cbfda 100644 --- a/daemon/test-session-client.c +++ b/daemon/test-session-client.c @@ -185,7 +185,7 @@ main (int argc, NULL, &error); if (address == NULL) { - g_critical ("Failed obtaining slave address: %s", error->message); + g_critical ("Failed opening reauthentication channel: %s", error->message); exit (1); } @@ -195,7 +195,7 @@ main (int argc, NULL, &error); if (connection == NULL) { - g_critical ("Failed connecting to the slave: %s", error->message); + g_critical ("Failed connecting to the manager: %s", error->message); exit (1); } |