1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-27 10:25:37 +03:00

logind: when parsing a boolean via sd-bus the type must be "int"

And not bool.
This commit is contained in:
Lennart Poettering 2015-09-04 10:35:46 +02:00
parent 5744f59a3e
commit 2cf088b56d

View File

@ -2293,7 +2293,7 @@ static int method_set_wall_message(
int r;
Manager *m = userdata;
char *wall_message;
bool enable_wall_messages;
int enable_wall_messages;
assert(message);
assert(m);