summaryrefslogtreecommitdiff
path: root/src/notify
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2015-09-09 14:51:58 +0300
committerEvgeny Vereshchagin <evvers@ya.ru>2015-09-09 14:55:13 +0300
commit39b50ad105bdc4285d197809436c30595ef6ef12 (patch)
tree006c9b549db891d3c6f728e5be35e0ff20a40071 /src/notify
parent542a69a284805aaf5b92b0e5da39339967d516e3 (diff)
downloadsystemd-39b50ad105bdc4285d197809436c30595ef6ef12.tar.gz
notify: log error when sd_pid_notify() == 0
Diffstat (limited to 'src/notify')
-rw-r--r--src/notify/notify.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notify/notify.c b/src/notify/notify.c
index c920b29297..c303bcf718 100644
--- a/src/notify/notify.c
+++ b/src/notify/notify.c
@@ -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;