summaryrefslogtreecommitdiff
path: root/src/shutdownd
diff options
context:
space:
mode:
Diffstat (limited to 'src/shutdownd')
-rw-r--r--src/shutdownd/shutdownd.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/shutdownd/shutdownd.c b/src/shutdownd/shutdownd.c
index 5f109f823b..cdad583bcb 100644
--- a/src/shutdownd/shutdownd.c
+++ b/src/shutdownd/shutdownd.c
@@ -203,20 +203,16 @@ static int update_schedule_file(struct sd_shutdown_command *c) {
assert(c);
r = mkdir_safe_label("/run/systemd/shutdown", 0755, 0, 0);
- if (r < 0) {
- log_error_errno(r, "Failed to create shutdown subdirectory: %m");
- return r;
- }
+ if (r < 0)
+ return log_error_errno(r, "Failed to create shutdown subdirectory: %m");
t = cescape(c->wall_message);
if (!t)
return log_oom();
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");
- return r;
- }
+ if (r < 0)
+ return log_error_errno(r, "Failed to save information about scheduled shutdowns: %m");
fchmod(fileno(f), 0644);