summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2012-04-05 22:54:48 -0400
committerMatthias Clasen <mclasen@redhat.com>2012-04-05 22:56:04 -0400
commit97f0b7a36e4a99a1ddf88c69aab38e816e13c70c (patch)
tree527dfed579632a738bc0cefd6764c765ed6c86ec
parent92554faba3f68309e75fa5e0384d8fbe2192294e (diff)
downloadgdm-97f0b7a36e4a99a1ddf88c69aab38e816e13c70c.tar.gz
Fix a problem in the systemd code
Make session unlock work with logind. This was not working due to a typo in the bus name of logind. https://bugzilla.gnome.org/show_bug.cgi?id=673620
-rw-r--r--daemon/gdm-slave.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/gdm-slave.c b/daemon/gdm-slave.c
index 6e1b45c1..06abc91f 100644
--- a/daemon/gdm-slave.c
+++ b/daemon/gdm-slave.c
@@ -1658,7 +1658,7 @@ session_unlock_for_systemd (GdmSlave *slave,
dbus_error_init (&error);
- message = dbus_message_new_method_call ("org.freedesktop.login",
+ message = dbus_message_new_method_call ("org.freedesktop.login1",
"/org/freedesktop/login1",
"org.freedesktop.login1.Manager",
"UnlockSession");