Ignore:
Timestamp:
Nov 12, 2012, 5:44:39 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: update branche to 3.5.17

Location:
branches/samba-3.5.x/source3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.5.x/source3/VERSION

    r736 r737  
    2626SAMBA_VERSION_MAJOR=3
    2727SAMBA_VERSION_MINOR=5
    28 SAMBA_VERSION_RELEASE=16
     28SAMBA_VERSION_RELEASE=17
    2929
    3030########################################################
  • branches/samba-3.5.x/source3/lib/util_sec.c

    r454 r737  
    339339
    340340#if USE_SETRESUID
    341         setresuid(geteuid(), -1, -1);
     341        setresuid(uid, uid, -1);
    342342#endif
    343343
  • branches/samba-3.5.x/source3/modules/vfs_gpfs.c

    r736 r737  
    936936        /* Only handle DOS Attributes */
    937937        if (strcmp(name,SAMBA_XATTR_DOS_ATTRIB) != 0){
    938                 DEBUG(1, ("gpfs_set_xattr:name is %s\n",name));
     938                DEBUG(5, ("gpfs_set_xattr:name is %s\n",name));
    939939                return SMB_VFS_NEXT_SETXATTR(handle,path,name,value,size,flags);
    940940        }
     
    990990        /* Only handle DOS Attributes */
    991991        if (strcmp(name,SAMBA_XATTR_DOS_ATTRIB) != 0){
    992                 DEBUG(1, ("gpfs_get_xattr:name is %s\n",name));
     992                DEBUG(5, ("gpfs_get_xattr:name is %s\n",name));
    993993                return SMB_VFS_NEXT_GETXATTR(handle,path,name,value,size);
    994994        }
Note: See TracChangeset for help on using the changeset viewer.