mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-20 14:03:39 +03:00
logind: interpret the can_sleep return value properly
can_sleep() returns a boolean, so a return value > 0 does not mean 'na'.
This commit is contained in:
parent
ddcbc87378
commit
398f7c881b
@ -1068,8 +1068,10 @@ static int bus_manager_can_shutdown_or_sleep(
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
result = "na";
|
||||
goto finish;
|
||||
if (r == 0) {
|
||||
result = "na";
|
||||
goto finish;
|
||||
}
|
||||
}
|
||||
|
||||
r = have_multiple_sessions(connection, m, message, error);
|
||||
|
Loading…
x
Reference in New Issue
Block a user