Changeset 737 for branches/samba-3.5.x/source3
- Timestamp:
- Nov 12, 2012, 5:44:39 PM (13 years ago)
- Location:
- branches/samba-3.5.x/source3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/VERSION
r736 r737 26 26 SAMBA_VERSION_MAJOR=3 27 27 SAMBA_VERSION_MINOR=5 28 SAMBA_VERSION_RELEASE=1 628 SAMBA_VERSION_RELEASE=17 29 29 30 30 ######################################################## -
branches/samba-3.5.x/source3/lib/util_sec.c
r454 r737 339 339 340 340 #if USE_SETRESUID 341 setresuid( geteuid(), -1, -1);341 setresuid(uid, uid, -1); 342 342 #endif 343 343 -
branches/samba-3.5.x/source3/modules/vfs_gpfs.c
r736 r737 936 936 /* Only handle DOS Attributes */ 937 937 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)); 939 939 return SMB_VFS_NEXT_SETXATTR(handle,path,name,value,size,flags); 940 940 } … … 990 990 /* Only handle DOS Attributes */ 991 991 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)); 993 993 return SMB_VFS_NEXT_GETXATTR(handle,path,name,value,size); 994 994 }
Note:
See TracChangeset
for help on using the changeset viewer.