diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-29 13:25:59 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-29 18:04:42 +1100 |
commit | 33d178767b425510448435748bdd780402106ded (patch) | |
tree | 0ba21861705712cff9c76c6760ee5d0c2ebd2bd8 /source4/lib | |
parent | b20ce4392e2d00c3edff8b4b8f329cf22341ea76 (diff) | |
download | samba-33d178767b425510448435748bdd780402106ded.tar.gz samba-33d178767b425510448435748bdd780402106ded.tar.bz2 samba-33d178767b425510448435748bdd780402106ded.zip |
s4-loadparm: use loadparm_init_global() instead of loadparm_init()
this prevents us having two lp_ctx contexts in these tools which leads
to bizarre behaviour
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/cmdline/popt_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/cmdline/popt_common.c b/source4/lib/cmdline/popt_common.c index 7d9e65d55f..76c6fb23a1 100644 --- a/source4/lib/cmdline/popt_common.c +++ b/source4/lib/cmdline/popt_common.c @@ -83,7 +83,7 @@ static void popt_samba_callback(poptContext con, pname++; if (reason == POPT_CALLBACK_REASON_PRE) { - cmdline_lp_ctx = loadparm_init(talloc_autofree_context()); + cmdline_lp_ctx = loadparm_init_global(false); /* Hook for 'almost the first thing to do in a samba program' here */ /* setup for panics */ |