diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:51 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:53 -0800 |
commit | f51dd169918355e7ce94e8194f04618bd61f97e4 (patch) | |
tree | f640f618a4e273f039d355ea36e4178157b8ad21 | |
parent | 528d302877467768a96505cc1018564b84c3c598 (diff) | |
download | samba-f51dd169918355e7ce94e8194f04618bd61f97e4.tar.gz samba-f51dd169918355e7ce94e8194f04618bd61f97e4.tar.xz samba-f51dd169918355e7ce94e8194f04618bd61f97e4.zip |
param: Rename variable used for lp_nt_pipe_support bNTPipeSupport
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | lib/param/param_functions.c | 2 | ||||
-rw-r--r-- | lib/param/param_table.c | 2 | ||||
-rw-r--r-- | source3/param/loadparm.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index 900b4fba2e..9964966283 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -197,7 +197,7 @@ FN_GLOBAL_BOOL(neutralize_nt4_emulation, neutralize_nt4_emulation) FN_GLOBAL_BOOL(nis_home_map, nis_home_map) FN_GLOBAL_BOOL(nmbd_bind_explicit_broadcast, nmbd_bind_explicit_broadcast) FN_GLOBAL_BOOL(ntlm_auth, ntlm_auth) -FN_GLOBAL_BOOL(nt_pipe_support, bNTPipeSupport) +FN_GLOBAL_BOOL(nt_pipe_support, nt_pipe_support) FN_GLOBAL_BOOL(nt_status_support, bNTStatusSupport) FN_GLOBAL_BOOL(null_passwords, bNullPasswords) FN_GLOBAL_BOOL(obey_pam_restrictions, bObeyPamRestrictions) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 266d46b14c..6887c9add4 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -1474,7 +1474,7 @@ static struct parm_struct parm_table[] = { .label = "nt pipe support", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bNTPipeSupport), + .offset = GLOBAL_VAR(nt_pipe_support), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index f736dcac18..9287ed8d07 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -869,7 +869,7 @@ static void init_globals(bool reinit_globals) Globals.bPamPasswordChange = false; Globals.bPasswdChatDebug = false; Globals.iPasswdChatTimeout = 2; /* 2 second default. */ - Globals.bNTPipeSupport = true; /* Do NT pipes by default. */ + Globals.nt_pipe_support = true; /* Do NT pipes by default. */ Globals.bNTStatusSupport = true; /* Use NT status by default. */ Globals.bStatCache = true; /* use stat cache by default */ Globals.iMaxStatCacheSize = 256; /* 256k by default */ |