diff options
-rw-r--r-- | source3/param/loadparm.c | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 207be6c037..c1cac6b966 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1646,13 +1646,8 @@ static void init_globals(BOOL first_time_only) Globals.bDeferSharingViolations = True; string_set(&Globals.smb_ports, SMB_PORTS); - /* don't enable privileges by default since Domain - Admins can then assign thr rights to perform certain - operations as root */ - - Globals.bEnablePrivileges = False; - - Globals.bASUSupport = True; + Globals.bEnablePrivileges = True; + Globals.bASUSupport = False; /* User defined shares. */ pstrcpy(s, dyn_LOCKDIR); @@ -5241,15 +5236,6 @@ const char *lp_printername(int snum) } -/**************************************************************** - Compatibility fn. for 2.2.2 code..... -*****************************************************************/ - -void get_private_directory(pstring privdir) -{ - pstrcpy (privdir, lp_private_dir()); -} - /*********************************************************** Allow daemons such as winbindd to fix their logfile name. ************************************************************/ |