diff options
author | Michael Adam <obnox@samba.org> | 2011-07-28 11:04:53 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-07-28 11:17:42 +0200 |
commit | a6fe4d20f192bf1bde7e632b03ee3e20776cf37e (patch) | |
tree | fe61e0aa7ef64ca19d0b42e15ede5bef4076c6f5 | |
parent | b793e02c6bb1962f44e8732cbf790b7912b7abe6 (diff) | |
download | samba-a6fe4d20f192bf1bde7e632b03ee3e20776cf37e.tar.gz samba-a6fe4d20f192bf1bde7e632b03ee3e20776cf37e.tar.bz2 samba-a6fe4d20f192bf1bde7e632b03ee3e20776cf37e.zip |
s3:winbindd: use lp_load_global() - winbindd does not need shares or IPC$
-rw-r--r-- | source3/winbindd/winbindd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index dd6ac16cfd..0c07d4b1b6 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -79,7 +79,7 @@ static bool reload_services_file(const char *lfile) } reopen_logs(); - ret = lp_load(get_dyn_CONFIGFILE(),False,False,True,True); + ret = lp_load_global(get_dyn_CONFIGFILE()); reopen_logs(); load_interfaces(); |