diff options
author | Michael Adam <obnox@samba.org> | 2011-07-27 16:34:53 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-07-28 11:17:31 +0200 |
commit | a7e921900236886f368e50d3c5ca82317558d63a (patch) | |
tree | 13aa4bb32ecf48a53938fdfac58b8d17827d82bc /source3/nmbd | |
parent | 74b806c88819270282a3a3d34d66d3657a1e4f9e (diff) | |
download | samba-a7e921900236886f368e50d3c5ca82317558d63a.tar.gz samba-a7e921900236886f368e50d3c5ca82317558d63a.tar.bz2 samba-a7e921900236886f368e50d3c5ca82317558d63a.zip |
s3:nmbd: use the lp_load_global() wrapper of lp_load()
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index e8a8b0ead9..ceec2fdf9d 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -366,7 +366,7 @@ static bool reload_nmbd_services(bool test) if ( test && !lp_file_list_changed() ) return(True); - ret = lp_load(get_dyn_CONFIGFILE(), True , False, False, True); + ret = lp_load_global(get_dyn_CONFIGFILE()); /* perhaps the config filename is now set */ if ( !test ) { |