From 0a2f9085e29c855ec1aaa996ded00fc36b06210c Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 27 Apr 2015 17:22:55 +0200 Subject: update-done: minor simplification --- src/update-done/update-done.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/update-done') diff --git a/src/update-done/update-done.c b/src/update-done/update-done.c index 44caf84faf..fb7ff988bb 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 -- cgit v1.2.3-54-g00ecf