diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:44 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:51 -0800 |
commit | eb4eadadf0ce72c04c6ec7d53ded0fcacd13e60c (patch) | |
tree | 8ef01f85ced8580cd36969298aa0039231b04fd7 /lib/param | |
parent | 48a1bb937dbd967f7b99ca8f980a1d24d7ef3991 (diff) | |
download | samba-eb4eadadf0ce72c04c6ec7d53ded0fcacd13e60c.tar.gz samba-eb4eadadf0ce72c04c6ec7d53ded0fcacd13e60c.tar.xz samba-eb4eadadf0ce72c04c6ec7d53ded0fcacd13e60c.zip |
param: Rename variable used for lp_create_krb5_conf bCreateKrb5Conf
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/param')
-rw-r--r-- | lib/param/param_functions.c | 2 | ||||
-rw-r--r-- | lib/param/param_table.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index 3737160a0d..fb5d7ebe98 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -165,7 +165,7 @@ FN_GLOBAL_BOOL(client_plaintext_auth, client_plaintext_auth) FN_GLOBAL_BOOL(client_use_spnego, client_use_spnego) FN_GLOBAL_BOOL(client_use_spnego_principal, client_use_spnego_principal) FN_GLOBAL_BOOL(clustering, clustering) -FN_GLOBAL_BOOL(create_krb5_conf, bCreateKrb5Conf) +FN_GLOBAL_BOOL(create_krb5_conf, create_krb5_conf) FN_GLOBAL_BOOL(debug_class, bDebugClass) FN_GLOBAL_BOOL(debug_hires_timestamp, bDebugHiresTimestamp) FN_GLOBAL_BOOL(debug_pid, bDebugPid) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index dd7d898ad9..99054d8fd1 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -4130,7 +4130,7 @@ static struct parm_struct parm_table[] = { .label = "create krb5 conf", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bCreateKrb5Conf), + .offset = GLOBAL_VAR(create_krb5_conf), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, |