summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-12-22 14:20:32 +0100
committerChristian Ambach <ambi@samba.org>2012-02-10 17:54:10 +0100
commit2e95d8048b9e9c7025ddada7ede15494e6016ba9 (patch)
tree46c5a92c7d2f580c449a0cc8a39129ffaec51a0d /source3
parentf1db71576abd31cff19ac7c3c071c9b3ee30f799 (diff)
downloadsamba-2e95d8048b9e9c7025ddada7ede15494e6016ba9.tar.gz
samba-2e95d8048b9e9c7025ddada7ede15494e6016ba9.tar.bz2
samba-2e95d8048b9e9c7025ddada7ede15494e6016ba9.zip
s3:vfs_gpfs: be less verbose in get/set_xattr functions
metze Signed-off-by: Christian Ambach <ambi@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/modules/vfs_gpfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c
index a588ed1513..3dec6abfb2 100644
--- a/source3/modules/vfs_gpfs.c
+++ b/source3/modules/vfs_gpfs.c
@@ -951,7 +951,7 @@ static int gpfs_set_xattr(struct vfs_handle_struct *handle, const char *path,
/* Only handle DOS Attributes */
if (strcmp(name,SAMBA_XATTR_DOS_ATTRIB) != 0){
- DEBUG(1, ("gpfs_set_xattr:name is %s\n",name));
+ DEBUG(5, ("gpfs_set_xattr:name is %s\n",name));
return SMB_VFS_NEXT_SETXATTR(handle,path,name,value,size,flags);
}
@@ -1027,7 +1027,7 @@ static ssize_t gpfs_get_xattr(struct vfs_handle_struct *handle, const char *pat
/* Only handle DOS Attributes */
if (strcmp(name,SAMBA_XATTR_DOS_ATTRIB) != 0){
- DEBUG(1, ("gpfs_get_xattr:name is %s\n",name));
+ DEBUG(5, ("gpfs_get_xattr:name is %s\n",name));
return SMB_VFS_NEXT_GETXATTR(handle,path,name,value,size);
}