diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-07-02 17:17:25 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-07-02 17:18:41 +0200 |
commit | 8b6fe8243d6a46d7435fb6789481489c44549cfb (patch) | |
tree | 5458022492aa23ff4b77415ddcb9a61caa491752 /src/login | |
parent | 294a90cc4af5139e936975a38baaa62771af96ba (diff) |
login: pass correct boolean type to libdbus
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/logind-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/logind-dbus.c b/src/login/logind-dbus.c index e61ec7afd5..a52f020b34 100644 --- a/src/login/logind-dbus.c +++ b/src/login/logind-dbus.c @@ -489,7 +489,7 @@ static int bus_manager_create_session(Manager *m, DBusMessage *message) { _cleanup_dbus_message_unref_ DBusMessage *reply = NULL; _cleanup_free_ char *path = NULL; _cleanup_close_ int fifo_fd = -1; - bool exists; + dbus_bool_t exists; /* Session already exists, client is probably * something like "su" which changes uid but is still |