Changeset 737
- Timestamp:
- Nov 12, 2012, 5:44:39 PM (13 years ago)
- Location:
- branches/samba-3.5.x
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/WHATSNEW.txt
r736 r737 1 ============================== 2 Release Notes for Samba 3.5.17 3 August 13, 2012 4 ============================== 5 6 7 This is the latest stable release of Samba 3.5. 8 9 10 Changes since 3.5.16: 11 --------------------- 12 13 o Jeremy Allison <jra@samba.org> 14 * BUG 9034: Fix typo in set_re_uid() call when USE_SETRESUID selected in 15 configure. 16 17 18 o Björn Jacke <bj@sernet.de> 19 * BUG 8996: Fix build without ads support. 20 * BUG 9011: Second part of a fix for bug #9011 (Build on HP-UX broken). 21 22 23 o Stefan Metzmacher <metze@samba.org> 24 * BUG 9022: Make vfs_gpfs less verbose in get/set_xattr functions. 25 26 27 ###################################################################### 28 Reporting bugs & Development Discussion 29 ####################################### 30 31 Please discuss this release on the samba-technical mailing list or by 32 joining the #samba-technical IRC channel on irc.freenode.net. 33 34 If you do report problems then please try to send high quality 35 feedback. If you don't provide vital information to help us track down 36 the problem then you will probably be ignored. All bug reports should 37 be filed under the Samba 3.5 product in the project's Bugzilla 38 database (https://bugzilla.samba.org/). 39 40 41 ====================================================================== 42 == Our Code, Our Bugs, Our Responsibility. 43 == The Samba Team 44 ====================================================================== 45 46 47 Release notes for older releases follow: 48 ---------------------------------------- 49 1 50 ============================== 2 51 Release Notes for Samba 3.5.16 … … 104 153 105 154 106 Release notes for older releases follow: 107 ---------------------------------------- 155 ---------------------------------------------------------------------- 156 108 157 109 158 ============================== -
branches/samba-3.5.x/libgpo/gpo_util.c
r414 r737 841 841 NT_USER_TOKEN **token) 842 842 { 843 #ifdef HAVE_ADS 843 844 NT_USER_TOKEN *ad_token = NULL; 844 845 ADS_STATUS status; … … 849 850 #endif 850 851 851 #ifndef HAVE_ADS852 return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED);853 #endif854 852 status = ads_get_sid_token(ads, mem_ctx, dn, &ad_token); 855 853 if (!ADS_ERR_OK(status)) { … … 867 865 #endif 868 866 return ADS_SUCCESS; 869 } 867 #else 868 return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED); 869 #endif 870 } -
branches/samba-3.5.x/nsswitch/winbind_nss_hpux.h
r736 r737 134 134 * h_errno is defined as function call macro for multithreaded applications 135 135 * in HP-UX. *this* h_errno is not used in the HP-UX codepath of our nss 136 * modules, so let's simply comment it out here: 137 * int h_errno; 136 * modules, so let's simply rename it: 138 137 */ 138 int h_errno_unused; 139 139 nss_status_t status; 140 140 } nss_XbyY_args_t; -
branches/samba-3.5.x/packaging/RHEL-CTDB/samba.spec
r736 r737 6 6 Packager: Samba Team <samba@samba.org> 7 7 Name: samba 8 Version: 3.5.1 68 Version: 3.5.17 9 9 Release: 1GITHASH 10 10 Epoch: 0 -
branches/samba-3.5.x/packaging/RHEL/makerpms.sh
r736 r737 21 21 USERID=`id -u` 22 22 GRPID=`id -g` 23 VERSION='3.5.1 6'23 VERSION='3.5.17' 24 24 REVISION='' 25 25 SPECFILE="samba.spec" -
branches/samba-3.5.x/packaging/RHEL/samba.spec
r736 r737 12 12 Packager: Samba Team <samba@samba.org> 13 13 Name: samba 14 Version: 3.5.1 614 Version: 3.5.17 15 15 Release: 1 16 16 Epoch: 0 -
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.