summaryrefslogtreecommitdiff
path: root/src/shutdownd/shutdownd.c
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2014-11-28 13:19:16 +0100
committerMichal Schmidt <mschmidt@redhat.com>2014-11-28 13:29:21 +0100
commitda927ba997d68401563b927f92e6e40e021a8e5c (patch)
tree71764cd998aef07b8943c5206c9307a93ba9c528 /src/shutdownd/shutdownd.c
parent0a1beeb64207eaa88ab9236787b1cbc2f704ae14 (diff)
treewide: no need to negate errno for log_*_errno()
It corrrectly handles both positive and negative errno values.
Diffstat (limited to 'src/shutdownd/shutdownd.c')
-rw-r--r--src/shutdownd/shutdownd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shutdownd/shutdownd.c b/src/shutdownd/shutdownd.c
index c443a90179..5f109f823b 100644
--- a/src/shutdownd/shutdownd.c
+++ b/src/shutdownd/shutdownd.c
@@ -204,7 +204,7 @@ static int update_schedule_file(struct sd_shutdown_command *c) {
r = mkdir_safe_label("/run/systemd/shutdown", 0755, 0, 0);
if (r < 0) {
- log_error_errno(-r, "Failed to create shutdown subdirectory: %m");
+ log_error_errno(r, "Failed to create shutdown subdirectory: %m");
return r;
}
@@ -214,7 +214,7 @@ static int update_schedule_file(struct sd_shutdown_command *c) {
r = fopen_temporary("/run/systemd/shutdown/scheduled", &f, &temp_path);
if (r < 0) {
- log_error_errno(-r, "Failed to save information about scheduled shutdowns: %m");
+ log_error_errno(r, "Failed to save information about scheduled shutdowns: %m");
return r;
}
@@ -284,7 +284,7 @@ int main(int argc, char *argv[]) {
n_fds = sd_listen_fds(true);
if (n_fds < 0) {
- log_error_errno(-r, "Failed to read listening file descriptors from environment: %m");
+ log_error_errno(r, "Failed to read listening file descriptors from environment: %m");
return EXIT_FAILURE;
}
@@ -410,7 +410,7 @@ int main(int argc, char *argv[]) {
e = write_string_file_atomic("/run/nologin", "System is going down.");
if (e < 0)
- log_error_errno(-e, "Failed to create /run/nologin: %m");
+ log_error_errno(e, "Failed to create /run/nologin: %m");
else
unlink_nologin = true;