From: Theodore Ts'o Date: Wed, 31 Aug 2016 22:37:50 +0000 (-0400) Subject: debugfs: fix typo when printing out the dtime label X-Git-Tag: v1.43.2~16 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=22137497fa13c1e38fdae96f43eb827c0f46692b;p=tools%2Fe2fsprogs.git 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 --- diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index f25ab1e..165f924 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));