aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
630# if ENABLE_SELINUX 630# if ENABLE_SELINUX
631 printf(" S_Context: %lc\n", *scontext); 631 printf(" S_Context: %lc\n", *scontext);
632# endif 632# endif
633 printf("Access: %s\n" "Modify: %s\n" "Change: %s\n", 633 printf("Access: %s\n", human_time(statbuf.st_atime));
634 human_time(statbuf.st_atime), 634 printf("Modify: %s\n", human_time(statbuf.st_mtime));
635 human_time(statbuf.st_mtime), 635 printf("Change: %s\n", human_time(statbuf.st_ctime));
636 human_time(statbuf.st_ctime));
637 } 636 }
638#endif /* FEATURE_STAT_FORMAT */ 637#endif /* FEATURE_STAT_FORMAT */
639 return 1; 638 return 1;