From: Mikhail Gusarov Date: Sun, 21 Mar 2010 08:22:47 +0000 (+0600) Subject: touch: do not ignore argument of -d/-t option X-Git-Tag: 1_17_0~386 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=927e4bb644ca6a50fd3e802806bbddce42daa1a6;p=platform%2Fupstream%2Fbusybox.git touch: do not ignore argument of -d/-t option Previously -d/-t was no-op due to wrong handling of args passed to utimes(2). Signed-off-by: Mikhail Gusarov Signed-off-by: Denys Vlasenko --- diff --git a/coreutils/touch.c b/coreutils/touch.c index 3f7b265..dceb7c1 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c @@ -104,7 +104,7 @@ int touch_main(int argc UNUSED_PARAM, char **argv) } do { - if (utimes(*argv, reference_file ? timebuf : NULL) != 0) { + if (utimes(*argv, (reference_file || date_str) ? timebuf : NULL) != 0) { if (errno == ENOENT) { /* no such file */ if (opts) { /* creation is disabled, so ignore */ continue; @@ -113,7 +113,7 @@ int touch_main(int argc UNUSED_PARAM, char **argv) fd = open(*argv, O_RDWR | O_CREAT, 0666); if (fd >= 0) { xclose(fd); - if (reference_file) + if (reference_file || date_str) utimes(*argv, timebuf); continue; }