From: Lennart Poettering Date: Mon, 27 Apr 2015 15:22:55 +0000 (+0200) Subject: update-done: minor simplification X-Git-Tag: v220~277 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a2f9085e29c855ec1aaa996ded00fc36b06210c;p=thirdparty%2Fsystemd.git update-done: minor simplification --- diff --git a/src/update-done/update-done.c b/src/update-done/update-done.c index 44caf84faf3..fb7ff988bb3 100644 --- a/src/update-done/update-done.c +++ b/src/update-done/update-done.c @@ -28,7 +28,10 @@ "was updated. See systemd-update-done.service(8).\n" static int apply_timestamp(const char *path, struct timespec *ts) { - struct timespec twice[2]; + struct timespec twice[2] = { + *ts, + *ts + }; struct stat st; assert(path); @@ -41,9 +44,6 @@ static int apply_timestamp(const char *path, struct timespec *ts) { return 0; /* It is older? Then let's update it */ - twice[0] = *ts; - twice[1] = *ts; - if (utimensat(AT_FDCWD, path, twice, AT_SYMLINK_NOFOLLOW) < 0) { if (errno == EROFS) @@ -74,9 +74,6 @@ static int apply_timestamp(const char *path, struct timespec *ts) { (void) loop_write(fd, MESSAGE, strlen(MESSAGE), false); - twice[0] = *ts; - twice[1] = *ts; - if (futimens(fd, twice) < 0) return log_error_errno(errno, "Failed to update timestamp on %s: %m", path); } else