1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

s3:split_tokens: use lp_load_global(), fixing the call to lp_load()

this does not need share and it dos not need to save defaults
This commit is contained in:
Michael Adam 2011-07-28 10:34:09 +02:00
parent d696beefb1
commit 7c41dda1b3

View File

@ -59,7 +59,7 @@ int main(int argc, const char *argv[])
lp_set_cmdline("log level", "0");
if (!lp_load(config_file,false,true,false,true)) {
if (!lp_load_global(config_file)) {
fprintf(stderr,"Error loading services.\n");
return 1;
}