Changeset 371
- Timestamp:
- Jan 15, 2010, 8:23:52 AM (16 years ago)
- Location:
- branches/samba-3.3.x
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/WHATSNEW.txt
r342 r371 1 ============================== 2 Release Notes for Samba 3.3.10 3 January 14, 2010 4 ============================== 5 6 7 This is the latest bugfix release of the Samba 3.3 series. 8 9 Major enhancements in Samba 3.3.10 include: 10 11 o Fix changing of ACLs on writable file with "dos filemode=yes" (bug #5202). 12 o Fix smbd crashes in dns_register_smbd_reply (bug #6696). 13 o Fix Winbind crashes when queried from nss (bug #6889). 14 o Fix Winbind crash when retrieving empty group members (bug #7014). 15 o Fix interdomain trusts with Win2008R2 (bug #6697). 16 17 18 ###################################################################### 19 Changes 20 ####### 21 22 Changes since 3.3.9 23 ------------------- 24 25 26 o Michael Adam <obnox@samba.org> 27 * BUG 6910: Fix "idmap backend" with multiple LDAP servers specified. 28 29 30 o Jeremy Allison <jra@samba.org> 31 * BUG 5202: Fix changing of ACLs on writable file with "dos filemode=yes". 32 * BUG 6696: Fix smbd crashes (signal 11) in dns_register_smbd_reply. 33 * BUG 6828: Fix infinite timeout when byte lock held outside of Samba. 34 * BUG 6829: Fix special characters in smbclient output. 35 * BUG 6867: trans2findnext returns reply_nterror(req, ntstatus) in a 36 directory with a lot of files. 37 * BUG 6875: Fix operations on OS/2 clients. 38 * BUG 6880: Fix listing of workgroup servers. 39 * BUG 6939: Fix long filenames when "mangling method = hash" is set. 40 * BUG 7005: "mangling method = hash" truncates files with dot '. ' 41 character. 42 43 44 o Olaf Flebbe <o.flebbe@science-computing.de> 45 * BUG 6805: Correctly handle aio_error() and errno. 46 47 48 o GÃŒnther Deschner <gd@samba.org> 49 * BUG 6697: Fix interdomain trusts with Win2008R2. 50 * BUG 6868: Support building of cifs.upcall with Heimdal as well with MIT. 51 * BUG 6889: Fix Winbind crashes when queried from nss. 52 * BUG 6929: Fix build with recent Heimdal. 53 * Fix the build of the winbind krb5 locator plugin. 54 * Fix compile of winbind_krb5_locator with recent Heimdal versions. 55 * Fix the build on Mac OS X 10.6.2. 56 57 58 o Jeff Layton <jlayton@redhat.com> 59 * BUG 6810: Backport support for finding alternate credcaches. 60 * Use pid value from kernel to determine KRB5CCNAME to use in cifs.upcall. 61 62 63 o Volker Lendecke <vl@samba.org> 64 * BUG 6338: 'net rpc trustdom list' always displays "none". 65 * BUG 6793: Fix segfault in winbindd_pam_auth. 66 * BUG 6850: Fix shadow copy display on Windows 7. 67 * BUG 6973: Fix a segfault in 'net'. 68 * Fix the build of cifs.upcall. 69 70 71 o Jim McDonough <jmcd@samba.org> 72 * BUG 7014: Fix Winbind crash when retrieving empty group members. 73 74 75 o Stefan Metzmacher <metze@samba.org> 76 * BUG 6157: Restore Samba 3.0.x behavior and use the first "uid" value. 77 * BUG 6642: Fix opening the quota magic file. 78 * BUG 6856: Fix the build of the GPFS VFS module with headers only. 79 * BUG 6919: Fix remote quota management. 80 81 82 o Timothy Miller <theosib@gmail.com> 83 * BUG 6696: Fix smbd crashes when using mdns (not avahi) support. 84 85 86 o Andrew Tridgell <tridge@samba.org> 87 * BUG 6918: Fix krb5 build problem on Ubuntu Karmic. 88 89 90 o Jelmer Vernooij <jelmer@samba.org> 91 * 6918: Fix the build with krb5-client-1.7-6.1. 92 93 94 o Bo Yang <boyang@samba.org> 95 * BUG 6811: pam_winbind references freed memory. 96 * BUG 6826: Don't fail authentication when one or some group of 97 require-membership-of is invalid. 98 * BUG 6840: Fix crash in pam_winbind. 99 100 101 ###################################################################### 102 Reporting bugs & Development Discussion 103 ####################################### 104 105 Please discuss this release on the samba-technical mailing list or by 106 joining the #samba-technical IRC channel on irc.freenode.net. 107 108 If you do report problems then please try to send high quality 109 feedback. If you don't provide vital information to help us track down 110 the problem then you will probably be ignored. All bug reports should 111 be filed under the Samba 3.3 product in the project's Bugzilla 112 database (https://bugzilla.samba.org/). 113 114 115 ====================================================================== 116 == Our Code, Our Bugs, Our Responsibility. 117 == The Samba Team 118 ====================================================================== 119 120 121 Release notes for older releases follow: 122 ---------------------------------------- 123 1 124 ============================= 2 125 Release Notes for Samba 3.3.9 … … 109 232 110 233 111 Release notes for older releases follow: 112 ---------------------------------------- 234 ---------------------------------------------------------------------- 235 113 236 114 237 ============================= -
branches/samba-3.3.x/packaging/RHEL-CTDB/samba.spec
r342 r371 6 6 Packager: Samba Team <samba@samba.org> 7 7 Name: samba 8 Version: 3.3. 98 Version: 3.3.10 9 9 Release: ctdb.1 10 10 Epoch: 0 -
branches/samba-3.3.x/packaging/RHEL/makerpms.sh
r342 r371 21 21 USERID=`id -u` 22 22 GRPID=`id -g` 23 VERSION='3.3. 9'23 VERSION='3.3.10' 24 24 REVISION='' 25 25 SPECFILE="samba.spec" … … 41 41 42 42 pushd . 43 cd ../../source 44 if [ -f Makefile ]; then 43 cd ../../source3 44 if [ -f Makefile ]; then 45 45 make distclean 46 46 fi -
branches/samba-3.3.x/packaging/RHEL/makerpms.sh.tmpl
r206 r371 41 41 42 42 pushd . 43 cd ../../source 44 if [ -f Makefile ]; then 43 cd ../../source3 44 if [ -f Makefile ]; then 45 45 make distclean 46 46 fi -
branches/samba-3.3.x/packaging/RHEL/samba.spec
r342 r371 6 6 Packager: Samba Team <samba@samba.org> 7 7 Name: samba 8 Version: 3.3. 98 Version: 3.3.10 9 9 Release: 1 10 10 Epoch: 0
Note:
See TracChangeset
for help on using the changeset viewer.