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 <tytso@mit.edu>
next
Theodore Ts'o 2016-08-31 18:37:50 -04:00
parent b199291909
commit 22137497fa
1 changed files with 1 additions and 1 deletions

View File

@ -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));