Ignore:
Timestamp:
May 24, 2009, 7:45:16 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.2

Location:
branches/samba-3.3.x/source/include
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/include/config.h.in

    r221 r222  
    32253225#undef vfs_prealloc_init
    32263226
     3227/* Whether to build vfs_preopen as shared module */
     3228#undef vfs_preopen_init
     3229
    32273230/* Whether to build vfs_readahead as shared module */
    32283231#undef vfs_readahead_init
  • branches/samba-3.3.x/source/include/includes.h

    r221 r222  
    208208#endif
    209209
    210 #if HAVE_GSSAPI_H
    211 #include <gssapi.h>
    212 #elif HAVE_GSSAPI_GSSAPI_H
     210#if HAVE_GSSAPI_GSSAPI_H
    213211#include <gssapi/gssapi.h>
    214212#elif HAVE_GSSAPI_GSSAPI_GENERIC_H
    215213#include <gssapi/gssapi_generic.h>
     214#elif HAVE_GSSAPI_H
     215#include <gssapi.h>
    216216#endif
    217217
  • branches/samba-3.3.x/source/include/libsmbclient.h

    r221 r222  
    26782678
    26792679void
    2680 smbc_set_credentials(char *workgroup,
    2681                      char *user,
    2682                      char *password,
     2680smbc_set_credentials(const char *workgroup,
     2681                     const char *user,
     2682                     const char *password,
    26832683                     smbc_bool use_kerberos,
    2684                      char *signing_state);
     2684                     const char *signing_state);
    26852685
    26862686/*
  • branches/samba-3.3.x/source/include/proto.h

    r221 r222  
    49434943void srv_calculate_sign_mac(char *outbuf);
    49444944void srv_defer_sign_response(uint16 mid);
    4945 void srv_cancel_sign_response(uint16 mid);
     4945void srv_cancel_sign_response(uint16 mid, bool cancel);
    49464946void srv_set_signing_negotiated(void);
    49474947bool srv_is_signing_active(void);
     
    52035203NTSTATUS can_set_delete_on_close(files_struct *fsp, bool delete_on_close,
    52045204                                 uint32 dosmode);
    5205 void set_delete_on_close_token(struct share_mode_lock *lck, UNIX_USER_TOKEN *tok);
    5206 void set_delete_on_close_lck(struct share_mode_lock *lck, bool delete_on_close, UNIX_USER_TOKEN *tok);
    5207 bool set_delete_on_close(files_struct *fsp, bool delete_on_close, UNIX_USER_TOKEN *tok);
     5205void set_delete_on_close_token(struct share_mode_lock *lck, const UNIX_USER_TOKEN *tok);
     5206void set_delete_on_close_lck(struct share_mode_lock *lck, bool delete_on_close, const UNIX_USER_TOKEN *tok);
     5207bool set_delete_on_close(files_struct *fsp, bool delete_on_close, const UNIX_USER_TOKEN *tok);
    52085208bool set_sticky_write_time(struct file_id fileid, struct timespec write_time);
    52095209bool set_write_time(struct file_id fileid, struct timespec write_time);
     
    89078907files_struct *file_find_di_next(files_struct *start_fsp);
    89088908files_struct *file_find_print(void);
     8909bool file_find_subpath(files_struct *dir_fsp);
    89098910void file_sync_all(connection_struct *conn);
    89108911void file_free(files_struct *fsp);
  • branches/samba-3.3.x/source/include/smb.h

    r221 r222  
    597597         */
    598598        struct auth_serversupplied_info *server_info;
     599
     600        /*
     601         * If the "force group" parameter is set, this is the primary gid that
     602         * may be used in the users token, depending on the vuid using this tid.
     603         */
     604        gid_t force_group_gid;
    599605
    600606        char client_address[INET6_ADDRSTRLEN]; /* String version of client IP address. */
  • branches/samba-3.3.x/source/include/version.h

    r221 r222  
    22#define SAMBA_VERSION_MAJOR 3
    33#define SAMBA_VERSION_MINOR 3
    4 #define SAMBA_VERSION_RELEASE 1
    5 #define SAMBA_VERSION_OFFICIAL_STRING "3.3.1"
     4#define SAMBA_VERSION_RELEASE 2
     5#define SAMBA_VERSION_OFFICIAL_STRING "3.3.2"
    66#define SAMBA_VERSION_STRING samba_version_string()
Note: See TracChangeset for help on using the changeset viewer.