From 22137497fa13c1e38fdae96f43eb827c0f46692b Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 31 Aug 2016 18:37:50 -0400 Subject: [PATCH] debugfs: fix typo when printing out the dtime label If the inode has extended timestamps, the dtime was printed with a label of "crtime". Fix this. Signed-off-by: Theodore Ts'o --- debugfs/debugfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index f25ab1e4..165f9248 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -888,7 +888,7 @@ void internal_dump_inode(FILE *out, const char *prefix, inode_time_to_string(large_inode->i_crtime, large_inode->i_crtime_extra)); if (inode->i_dtime) - fprintf(out, "%scrtime: 0x%08x:(%08x) -- %s", prefix, + fprintf(out, "%s dtime: 0x%08x:(%08x) -- %s", prefix, large_inode->i_dtime, large_inode->i_ctime_extra, inode_time_to_string(inode->i_dtime, large_inode->i_ctime_extra));