mirror of
https://github.com/systemd/systemd.git
synced 2025-03-25 18:50:18 +03:00
notify: log error when sd_pid_notify() == 0
This commit is contained in:
parent
542a69a284
commit
39b50ad105
@ -195,10 +195,10 @@ int main(int argc, char* argv[]) {
|
||||
if (r < 0) {
|
||||
log_error_errno(r, "Failed to notify init system: %m");
|
||||
goto finish;
|
||||
}
|
||||
|
||||
if (r == 0)
|
||||
} else if (r == 0) {
|
||||
log_error("No status data could be sent: $NOTIFY_SOCKET was not set");
|
||||
r = -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
finish:
|
||||
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
|
||||
|
Loading…
x
Reference in New Issue
Block a user