Ignore:
Timestamp:
Nov 29, 2012, 1:59:04 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/modules/vfs_gpfs.c

    r745 r751  
    599599
    600600        result = gpfs2smb_acl(pacl);
    601         if (result == NULL) {
    602                 goto done;
     601        if (result != NULL) {
     602                errno = 0;
    603603        }
    604604
     
    951951        /* Only handle DOS Attributes */
    952952        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));
    954954                return SMB_VFS_NEXT_SETXATTR(handle,path,name,value,size,flags);
    955955        }
     
    10271027        /* Only handle DOS Attributes */
    10281028        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));
    10301030                return SMB_VFS_NEXT_GETXATTR(handle,path,name,value,size);
    10311031        }
Note: See TracChangeset for help on using the changeset viewer.