chiark / gitweb /
logind: fix "CanGraphical" attribute to return correct value
authorDavid Herrmann <dh.herrmann@gmail.com>
Sat, 30 Nov 2013 10:37:32 +0000 (11:37 +0100)
committerDavid Herrmann <dh.herrmann@gmail.com>
Sun, 1 Dec 2013 11:17:08 +0000 (12:17 +0100)
We should return seat_can_graphical() instead of seat_can_tty() for the
public dbus CanGraphical attribute. This used to work, but the
dbus -> sd-bus conversion introduced this regression.

src/login/logind-seat-dbus.c

index 76158e501bbabd0461232d5888b0028b3247f60c..23f975bca7ebae9c5630644a0b42ca77fccfe54f 100644 (file)
@@ -103,7 +103,7 @@ static int property_get_can_graphical(
         assert(reply);
         assert(s);
 
-        return sd_bus_message_append(reply, "b", seat_can_tty(s));
+        return sd_bus_message_append(reply, "b", seat_can_graphical(s));
 }
 
 static int property_get_sessions(