aboutsummaryrefslogtreecommitdiff
path: root/coreutils/stat.c
diff options
context:
space:
mode:
authorEric Lammerts <busybox@lists.lammerts.org>2010-10-30 02:48:20 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-10-30 02:48:20 +0200
commit66be9197a5111d0293732f4823d1711ccab51675 (patch)
tree42a32bde5fad1f26e5aea65064931f9633383a97 /coreutils/stat.c
parentd7559c274139c91af5ce77bd4b9f863f78a69f69 (diff)
downloadbusybox-66be9197a5111d0293732f4823d1711ccab51675.tar.gz
stat: fix mtime/ctime/atime
If you set CONFIG_FEATURE_STAT_FORMAT=n, two of the three printed times are wrong, because a global buffer is reused. Fix below. Signed-off-by: Eric Lammerts <busybox@lists.lammerts.org> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/stat.c')
-rw-r--r--coreutils/stat.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c
index b4e6f10fd..7351f5956 100644
--- a/coreutils/stat.c
+++ b/coreutils/stat.c
@@ -630,10 +630,9 @@ static bool do_stat(const char *filename, const char *format)
# if ENABLE_SELINUX
printf(" S_Context: %lc\n", *scontext);
# endif
- printf("Access: %s\n" "Modify: %s\n" "Change: %s\n",
- human_time(statbuf.st_atime),
- human_time(statbuf.st_mtime),
- human_time(statbuf.st_ctime));
+ printf("Access: %s\n", human_time(statbuf.st_atime));
+ printf("Modify: %s\n", human_time(statbuf.st_mtime));
+ printf("Change: %s\n", human_time(statbuf.st_ctime));
}
#endif /* FEATURE_STAT_FORMAT */
return 1;