summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2012-09-17 14:29:36 -0400
committerRay Strode <rstrode@redhat.com>2012-09-17 16:41:25 -0400
commitdfce1962cbb3ca95b0e407450179a0965e6f3ec3 (patch)
tree35e3b977d40751c6d60f93fdbcfb34309d49effd
parent48a02aa7c9906438f1d385279e93e5a29d371680 (diff)
downloadgdm-dfce1962cbb3ca95b0e407450179a0965e6f3ec3.tar.gz
worker: correct debug messages
The conversation-started message said "stopped" and the conversation-stopped message said "started" This commit flips 'em. https://bugzilla.gnome.org/show_bug.cgi?id=684241
-rw-r--r--daemon/gdm-session-worker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/gdm-session-worker.c b/daemon/gdm-session-worker.c
index 1ccc0b73..d8a92b7f 100644
--- a/daemon/gdm-session-worker.c
+++ b/daemon/gdm-session-worker.c
@@ -2655,7 +2655,7 @@ on_reauthentication_conversation_started (GdmSession *session,
const char *service_name,
ReauthenticationRequest *request)
{
- g_debug ("GdmSessionWorker: reauthentication service '%s' stopped",
+ g_debug ("GdmSessionWorker: reauthentication service '%s' started",
service_name);
}
@@ -2664,7 +2664,7 @@ on_reauthentication_conversation_stopped (GdmSession *session,
const char *service_name,
ReauthenticationRequest *request)
{
- g_debug ("GdmSessionWorker: reauthentication service '%s' started",
+ g_debug ("GdmSessionWorker: reauthentication service '%s' stopped",
service_name);
}