diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-15 00:12:53 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-15 00:12:53 +0100 |
commit | a307af1af62c51e33e2801d74dbc35560af0fc0e (patch) | |
tree | 8d1164763328f7b580afceda831b979de97b7da7 /libbb | |
parent | cc8b6871a71e42a3e0bdb79e534b90cc3eb4c8e6 (diff) |
use utimes() rather than obsolescent utime()
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/copy_file.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libbb/copy_file.c b/libbb/copy_file.c index ff298855d..a96691b24 100644 --- a/libbb/copy_file.c +++ b/libbb/copy_file.c @@ -374,12 +374,10 @@ int FAST_FUNC copy_file(const char *source, const char *dest, int flags) /* Cannot happen: */ /* && !(flags & (FILEUTILS_MAKE_SOFTLINK|FILEUTILS_MAKE_HARDLINK)) */ ) { - struct utimbuf times; - - times.actime = source_stat.st_atime; - times.modtime = source_stat.st_mtime; + struct timeval times = {.tv_sec = source_stat.st_mtime, + .tv_usec = 0}; /* BTW, utimes sets usec-precision time - just FYI */ - if (utime(dest, ×) < 0) + if (utimes(dest, ×) < 0) bb_perror_msg("can't preserve %s of '%s'", "times", dest); if (chown(dest, source_stat.st_uid, source_stat.st_gid) < 0) { source_stat.st_mode &= ~(S_ISUID | S_ISGID); |