From e062dec5ae1a443d47885537af85d328c83c67db Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Wed, 12 Feb 2014 20:40:11 -0500 Subject: [PATCH] shutdownd: modernizations --- src/shutdownd/shutdownd.c | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/src/shutdownd/shutdownd.c b/src/shutdownd/shutdownd.c index 4a1719849..8d034e6cc 100644 --- a/src/shutdownd/shutdownd.c +++ b/src/shutdownd/shutdownd.c @@ -61,9 +61,9 @@ static int read_packet(int fd, union shutdown_buffer *_b) { } control = {}; struct msghdr msghdr = { .msg_iov = &iovec, - msghdr.msg_iovlen = 1, - msghdr.msg_control = &control, - msghdr.msg_controllen = sizeof(control), + .msg_iovlen = 1, + .msg_control = &control, + .msg_controllen = sizeof(control), }; assert(fd >= 0); @@ -120,7 +120,7 @@ static int read_packet(int fd, union shutdown_buffer *_b) { static void warn_wall(usec_t n, struct sd_shutdown_command *c) { char date[FORMAT_TIMESTAMP_MAX]; const char *prefix; - char *l = NULL; + _cleanup_free_ char *l = NULL; assert(c); assert(c->warn_wall); @@ -142,12 +142,10 @@ static void warn_wall(usec_t n, struct sd_shutdown_command *c) { assert_not_reached("Unknown mode!"); if (asprintf(&l, "%s%s%s%s!", c->wall_message, c->wall_message[0] ? "\n" : "", - prefix, format_timestamp(date, sizeof(date), c->usec)) < 0) - log_error("Failed to allocate wall message"); - else { + prefix, format_timestamp(date, sizeof(date), c->usec)) >= 0) utmp_wall(l, NULL); - free(l); - } + else + log_error("Failed to allocate wall message"); } _const_ static usec_t when_wall(usec_t n, usec_t elapse) { @@ -199,8 +197,8 @@ static const char *mode_to_string(enum sd_shutdown_mode m) { static int update_schedule_file(struct sd_shutdown_command *c) { int r; - FILE *f; - char *temp_path, *t; + _cleanup_fclose_ FILE *f = NULL; + _cleanup_free_ char *t = NULL, *temp_path = NULL; assert(c); @@ -217,7 +215,6 @@ 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("Failed to save information about scheduled shutdowns: %s", strerror(-r)); - free(t); return r; } @@ -237,8 +234,6 @@ static int update_schedule_file(struct sd_shutdown_command *c) { if (!isempty(t)) fprintf(f, "WALL_MESSAGE=%s\n", t); - free(t); - fflush(f); if (ferror(f) || rename(temp_path, "/run/systemd/shutdown/scheduled") < 0) { @@ -249,9 +244,6 @@ static int update_schedule_file(struct sd_shutdown_command *c) { unlink("/run/systemd/shutdown/scheduled"); } - fclose(f); - free(temp_path); - return r; } -- 2.30.2