From e63bcdd720d801df278ef84063c46144df087793 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 1 Nov 2007 18:13:00 +0100 Subject: Remove the silly "user_socket_options" global variable This is better done with a 'lp_do_parameter(-1, "socket options", ..); (This used to be commit 814bed029efa391e664ac432d0d68dfeab26381f) --- source3/lib/popt_common.c | 3 +-- source3/lib/util.c | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/popt_common.c b/source3/lib/popt_common.c index ec05762cdf..7cc066d667 100644 --- a/source3/lib/popt_common.c +++ b/source3/lib/popt_common.c @@ -33,7 +33,6 @@ * -i,--scope */ -extern pstring user_socket_options; extern bool AllowDebugChange; extern bool override_logfile; @@ -92,7 +91,7 @@ static void popt_common_callback(poptContext con, case 'O': if (arg) { - pstrcpy(user_socket_options,arg); + lp_do_parameter(-1, "socket options", arg); } break; diff --git a/source3/lib/util.c b/source3/lib/util.c index fd79a7eb46..7f0ec0b132 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -68,7 +68,6 @@ int chain_size = 0; int trans_num = 0; static enum remote_arch_types ra_type = RA_UNKNOWN; -pstring user_socket_options=DEFAULT_SOCKET_OPTIONS; /*********************************************************************** Definitions for all names. -- cgit