Changeset 989 for vendor/current/source3/param
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/param/loadparm.c
r988 r989 872 872 Globals.server_services = str_list_make_v3_const(NULL, "s3fs rpc nbt wrepl ldap cldap kdc drepl winbindd ntp_signd kcc dnsupdate dns", NULL); 873 873 874 Globals.dcerpc_endpoint_servers = str_list_make_v3_const(NULL, "epmapper wkssvc rpcecho samr netlogon lsarpc spoolssdrsuapi 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); 875 875 876 876 Globals.tls_enabled = true; … … 4338 4338 4339 4339 /******************************************************************* 4340 Change everything needed to ensure POSIX pathname processing (currently 4341 not much). 4340 Set posix pathnames to new value. Returns old value. 4342 4341 ********************************************************************/ 4343 4342 4344 void lp_set_posix_pathnames(void) 4345 { 4346 posix_pathnames = true; 4343 bool lp_set_posix_pathnames(bool newval) 4344 { 4345 bool oldval = posix_pathnames; 4346 posix_pathnames = newval; 4347 return oldval; 4347 4348 } 4348 4349
Note:
See TracChangeset
for help on using the changeset viewer.