Ignore:
Timestamp:
Nov 25, 2016, 8:04:54 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/param/loadparm.c

    r988 r989  
    872872        Globals.server_services = str_list_make_v3_const(NULL, "s3fs rpc nbt wrepl ldap cldap kdc drepl winbindd ntp_signd kcc dnsupdate dns", NULL);
    873873
    874         Globals.dcerpc_endpoint_servers = str_list_make_v3_const(NULL, "epmapper wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi dssetup unixinfo browser eventlog6 backupkey dnsserver", NULL);
     874        Globals.dcerpc_endpoint_servers = str_list_make_v3_const(NULL, "epmapper wkssvc rpcecho samr netlogon lsarpc drsuapi dssetup unixinfo browser eventlog6 backupkey dnsserver", NULL);
    875875
    876876        Globals.tls_enabled = true;
     
    43384338
    43394339/*******************************************************************
    4340  Change everything needed to ensure POSIX pathname processing (currently
    4341  not much).
     4340 Set posix pathnames to new value. Returns old value.
    43424341********************************************************************/
    43434342
    4344 void lp_set_posix_pathnames(void)
    4345 {
    4346         posix_pathnames = true;
     4343bool lp_set_posix_pathnames(bool newval)
     4344{
     4345        bool oldval = posix_pathnames;
     4346        posix_pathnames = newval;
     4347        return oldval;
    43474348}
    43484349
Note: See TracChangeset for help on using the changeset viewer.