diff options
author | Günther Deschner <gd@samba.org> | 2006-05-09 08:15:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:16:55 -0500 |
commit | 767ac75e6b5a999c8a57560ad888eb88589493a2 (patch) | |
tree | 1a764ddde5766ff7d20736d5edc7aa6c81cb1e88 /source3/client | |
parent | a4638ab379e3e9017b5f08f2eb723e802f696f61 (diff) | |
download | samba-767ac75e6b5a999c8a57560ad888eb88589493a2.tar.gz samba-767ac75e6b5a999c8a57560ad888eb88589493a2.tar.bz2 samba-767ac75e6b5a999c8a57560ad888eb88589493a2.zip |
r15519: Fix segfault.
Guenther
(This used to be commit a0548914c21bb769c3e97b47c9bc521c595f579b)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/smbctool.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/client/smbctool.c b/source3/client/smbctool.c index 6c89f5ea82..ba095aee84 100644 --- a/source3/client/smbctool.c +++ b/source3/client/smbctool.c @@ -3649,7 +3649,9 @@ static int do_message_op(void) if ( override_logfile ) setup_logging( lp_logfile(), False ); - + + load_case_tables(); + if (!lp_load(dyn_CONFIGFILE,True,False,False,True)) { fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n", argv[0], dyn_CONFIGFILE); |