From 66be9197a5111d0293732f4823d1711ccab51675 Mon Sep 17 00:00:00 2001 From: Eric Lammerts Date: Sat, 30 Oct 2010 02:48:20 +0200 Subject: 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 Signed-off-by: Denys Vlasenko --- coreutils/stat.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'coreutils/stat.c') 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; -- cgit v1.2.3