commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hurd] 06/06: ext2fs: Reduce verbosity of missing xattr support on the F


From: Samuel Thibault
Subject: [hurd] 06/06: ext2fs: Reduce verbosity of missing xattr support on the FS
Date: Sat, 10 Jun 2017 00:38:18 +0000

This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch upstream
in repository hurd.

commit cb991b0fd709a635b21c6ea2314acb5345b1b72c
Author: Samuel Thibault <address@hidden>
Date:   Sun May 7 13:41:26 2017 +0200

    ext2fs: Reduce verbosity of missing xattr support on the FS
    
    * ext2fs/xattr.c (ext2_list_xattr, ext2_get_xattr): Only warn about
    missing ext2fs support in debugging mode.
---
 ext2fs/xattr.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ext2fs/xattr.c b/ext2fs/xattr.c
index 5ce84ce..c703717 100644
--- a/ext2fs/xattr.c
+++ b/ext2fs/xattr.c
@@ -512,7 +512,7 @@ ext2_list_xattr (struct node *np, char *buffer, size_t *len)
 
   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;
     }
 
@@ -587,7 +587,7 @@ ext2_get_xattr (struct node *np, const char *name, char 
*value, size_t *len)
 
   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;
     }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/hurd.git



reply via email to

[Prev in Thread] Current Thread [Next in Thread]