diff options
Diffstat (limited to 'source4/utils/net')
-rw-r--r-- | source4/utils/net/net.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source4/utils/net/net.c b/source4/utils/net/net.c index c7c6f7dec9..51b860234d 100644 --- a/source4/utils/net/net.c +++ b/source4/utils/net/net.c @@ -154,14 +154,12 @@ static int binary_net(int argc, const char **argv) POPT_TABLEEND }; - setup_logging("net", DEBUG_STDOUT); - #ifdef HAVE_SETBUFFER setbuffer(stdout, NULL, 0); #endif pc = poptGetContext("net", argc, (const char **) argv, long_options, - POPT_CONTEXT_KEEP_FIRST); + POPT_CONTEXT_KEEP_FIRST); while((opt = poptGetNextOpt(pc)) != -1) { switch (opt) { @@ -173,9 +171,6 @@ static int binary_net(int argc, const char **argv) } } - lp_load(dyn_CONFIGFILE,True,False,False); - load_interfaces(); - argv_new = (const char **)poptGetArgs(pc); argc_new = argc; |