Changeset 751 for trunk/server/source3/modules/vfs_gpfs.c
- Timestamp:
- Nov 29, 2012, 1:59:04 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/modules/vfs_gpfs.c
r745 r751 599 599 600 600 result = gpfs2smb_acl(pacl); 601 if (result == NULL) {602 goto done;601 if (result != NULL) { 602 errno = 0; 603 603 } 604 604 … … 951 951 /* Only handle DOS Attributes */ 952 952 if (strcmp(name,SAMBA_XATTR_DOS_ATTRIB) != 0){ 953 DEBUG( 1, ("gpfs_set_xattr:name is %s\n",name));953 DEBUG(5, ("gpfs_set_xattr:name is %s\n",name)); 954 954 return SMB_VFS_NEXT_SETXATTR(handle,path,name,value,size,flags); 955 955 } … … 1027 1027 /* Only handle DOS Attributes */ 1028 1028 if (strcmp(name,SAMBA_XATTR_DOS_ATTRIB) != 0){ 1029 DEBUG(1, ("gpfs_get_xattr:name is %s\n",name));1029 DEBUG(5, ("gpfs_get_xattr:name is %s\n",name)); 1030 1030 return SMB_VFS_NEXT_GETXATTR(handle,path,name,value,size); 1031 1031 }
Note:
See TracChangeset
for help on using the changeset viewer.