From: Mark Tinguely Date: Thu, 17 Oct 2013 15:28:07 +0000 (+0000) Subject: xfs_progs: add dirent filetype to xfs_db version X-Git-Tag: v3.2.0-alpha2~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=42737f1ad16213a3dab1756c9fffb494db8ef27e;p=thirdparty%2Fxfsprogs-dev.git xfs_progs: add dirent filetype to xfs_db version Add directory inode type to the xfs_db version command. Signed-off-by: Mark Tinguely Reviewed-by: Dave Chinner Signed-off-by: Rich Johnston --- diff --git a/db/sb.c b/db/sb.c index d178f58ff..492915265 100644 --- a/db/sb.c +++ b/db/sb.c @@ -644,6 +644,8 @@ version_string( strcat(s, ",PROJID32BIT"); if (xfs_sb_version_hascrc(sbp)) strcat(s, ",CRC"); + if (xfs_sb_version_hasftype(sbp)) + strcat(s, ",FTYPE"); return s; }