From 4815480bb6ed44081076bac5471267609f7668cf Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 9 Nov 2004 09:26:47 +0000 Subject: r3633: - moved module init functions to after smb.conf and command line parsing, so that module init can take account of lp_ parms (thats why gensec:krb5=no wasn't working) - added a BASE-DISCONNECT torture test that tests server response to clients disconnecting with open lock and open requests pending (This used to be commit 5205f598b8c0be6985e61cc842cc5da109ba5b7e) --- source4/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/client') diff --git a/source4/client/client.c b/source4/client/client.c index 9c797e863c..81bf2a7930 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -3022,8 +3022,6 @@ static void remember_query_host(const char *arg, POPT_TABLEEND }; - smbclient_init_subsystems; - #ifdef KANJI pstrcpy(term_code, KANJI); #else /* KANJI */ @@ -3092,6 +3090,8 @@ static void remember_query_host(const char *arg, load_interfaces(); + smbclient_init_subsystems; + if(poptPeekArg(pc)) { pstrcpy(service,poptGetArg(pc)); /* Convert any '/' characters in the service name to '\' characters */ -- cgit