aboutsummaryrefslogtreecommitdiff
path: root/ext2fs
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2017-06-09 22:08:23 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2017-06-09 22:08:23 +0200
commit019f9923e879ff326b14b2de04c6939c07ccb55b (patch)
treee541cd51199aa58cc1dde25657da2fd307701bd3 /ext2fs
parent26e774bab06eab72847a7ca052a90d5319ad658a (diff)
downloadhurd-019f9923e879ff326b14b2de04c6939c07ccb55b.tar.gz
hurd-019f9923e879ff326b14b2de04c6939c07ccb55b.tar.bz2
hurd-019f9923e879ff326b14b2de04c6939c07ccb55b.zip
ext2fs: Reduce verbosity of missing xattr support on the FS
* ext2fs/xattr.c (ext2_free_xattr_block): Only warn about missing ext2fs support in debugging mode.
Diffstat (limited to 'ext2fs')
-rw-r--r--ext2fs/xattr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/xattr.c b/ext2fs/xattr.c
index c7037176..45969195 100644
--- a/ext2fs/xattr.c
+++ b/ext2fs/xattr.c
@@ -429,7 +429,7 @@ ext2_free_xattr_block (struct node *np)
if (!EXT2_HAS_COMPAT_FEATURE (sblock, EXT2_FEATURE_COMPAT_EXT_ATTR))
{
- ext2_warning ("Filesystem has no support for extended attributes.");
+ ext2_debug ("Filesystem has no support for extended attributes.");
return EOPNOTSUPP;
}