From b65dba2245bf382c47d65c95ac9b1efa43918fc0 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 10 Dec 2007 04:33:16 +0100 Subject: r26355: Eliminate global_loadparm in more places. (This used to be commit 5d589a0d94bd76a9b4c9fc748854e8098ea43c4d) --- source4/client/cifsdd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/client/cifsdd.c') diff --git a/source4/client/cifsdd.c b/source4/client/cifsdd.c index 06a5f79ed7..2ce01a2227 100644 --- a/source4/client/cifsdd.c +++ b/source4/client/cifsdd.c @@ -574,7 +574,7 @@ int main(int argc, const char ** argv) } } - gensec_init(global_loadparm); + gensec_init(cmdline_lp_ctx); dump_args(); if (check_arg_numeric("ibs") == 0 || check_arg_numeric("ibs") == 0) { @@ -595,7 +595,7 @@ int main(int argc, const char ** argv) CatchSignal(SIGINT, dd_handle_signal); CatchSignal(SIGUSR1, dd_handle_signal); - return(copy_files(global_loadparm)); + return(copy_files(cmdline_lp_ctx)); } /* vim: set sw=8 sts=8 ts=8 tw=79 : */ -- cgit