Changeset 737


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
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
     7This is the latest stable release of Samba 3.5.
     8
     9
     10Changes since 3.5.16:
     11---------------------
     12
     13o   Jeremy Allison <jra@samba.org>
     14    * BUG 9034: Fix typo in set_re_uid() call when USE_SETRESUID selected in
     15      configure.
     16
     17
     18o   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
     23o   Stefan Metzmacher <metze@samba.org>
     24    * BUG 9022: Make vfs_gpfs less verbose in get/set_xattr functions.
     25
     26
     27######################################################################
     28Reporting bugs & Development Discussion
     29#######################################
     30
     31Please discuss this release on the samba-technical mailing list or by
     32joining the #samba-technical IRC channel on irc.freenode.net.
     33
     34If you do report problems then please try to send high quality
     35feedback. If you don't provide vital information to help us track down
     36the problem then you will probably be ignored.  All bug reports should
     37be filed under the Samba 3.5 product in the project's Bugzilla
     38database (https://bugzilla.samba.org/).
     39
     40
     41======================================================================
     42== Our Code, Our Bugs, Our Responsibility.
     43== The Samba Team
     44======================================================================
     45
     46
     47Release notes for older releases follow:
     48----------------------------------------
     49
    150                   ==============================
    251                   Release Notes for Samba 3.5.16
     
    104153
    105154
    106 Release notes for older releases follow:
    107 ----------------------------------------
     155----------------------------------------------------------------------
     156
    108157
    109158                   ==============================
  • branches/samba-3.5.x/libgpo/gpo_util.c

    r414 r737  
    841841                                NT_USER_TOKEN **token)
    842842{
     843#ifdef HAVE_ADS
    843844        NT_USER_TOKEN *ad_token = NULL;
    844845        ADS_STATUS status;
     
    849850#endif
    850851
    851 #ifndef HAVE_ADS
    852         return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED);
    853 #endif
    854852        status = ads_get_sid_token(ads, mem_ctx, dn, &ad_token);
    855853        if (!ADS_ERR_OK(status)) {
     
    867865#endif
    868866        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  
    134134        *  h_errno is defined as function call macro for multithreaded applications
    135135        *  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:
    138137        */
     138        int h_errno_unused;
    139139        nss_status_t status;
    140140} nss_XbyY_args_t;
  • branches/samba-3.5.x/packaging/RHEL-CTDB/samba.spec

    r736 r737  
    66Packager: Samba Team <samba@samba.org>
    77Name:         samba
    8 Version:      3.5.16
     8Version:      3.5.17
    99Release:      1GITHASH
    1010Epoch:        0
  • branches/samba-3.5.x/packaging/RHEL/makerpms.sh

    r736 r737  
    2121USERID=`id -u`
    2222GRPID=`id -g`
    23 VERSION='3.5.16'
     23VERSION='3.5.17'
    2424REVISION=''
    2525SPECFILE="samba.spec"
  • branches/samba-3.5.x/packaging/RHEL/samba.spec

    r736 r737  
    1212Packager: Samba Team <samba@samba.org>
    1313Name:         samba
    14 Version:      3.5.16
     14Version:      3.5.17
    1515Release:      1
    1616Epoch:        0
  • 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.