diff options
author | Michael Adam <obnox@samba.org> | 2011-07-28 10:27:09 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-07-28 11:17:39 +0200 |
commit | 039ae12dbb554677bce8c27be120fdaaedc37cb8 (patch) | |
tree | 7d09102c4a2dae40c6badb4ad3afb63c0a3fdbd5 /source3 | |
parent | e6176d597a7c23ce40b1b578749753bc0de01e9e (diff) | |
download | samba-039ae12dbb554677bce8c27be120fdaaedc37cb8.tar.gz samba-039ae12dbb554677bce8c27be120fdaaedc37cb8.tar.bz2 samba-039ae12dbb554677bce8c27be120fdaaedc37cb8.zip |
s3:smbfilter: use lp_load_global()
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/smbfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbfilter.c b/source3/utils/smbfilter.c index 2982f6a6c3..23f47550fa 100644 --- a/source3/utils/smbfilter.c +++ b/source3/utils/smbfilter.c @@ -338,7 +338,7 @@ int main(int argc, char *argv[]) netbiosname = argv[2]; } - if (!lp_load(configfile,True,False,False,True)) { + if (!lp_load_global(configfile)) { d_printf("Unable to load config file\n"); } |