From b249902f089e060e091962bc3b4690ee9131b816 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 24 Dec 2013 16:03:55 +1300 Subject: [PATCH] param: Rename variable used for lp_unix_extensions bUnixExtensions Signed-off-by: Andrew Bartlett Signed-off-by: Garming Sam Reviewed-by: Jeremy Allison --- lib/param/param_functions.c | 2 +- lib/param/param_table.c | 2 +- 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 e44cc8da52e..15160cc6189 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -216,7 +216,7 @@ FN_GLOBAL_BOOL(timestamp_logs, timestamp_logs) FN_GLOBAL_BOOL(time_server, time_server) FN_GLOBAL_BOOL(tls_enabled, tls_enabled) FN_GLOBAL_BOOL(unicode, unicode) -FN_GLOBAL_BOOL(unix_extensions, bUnixExtensions) +FN_GLOBAL_BOOL(unix_extensions, unix_extensions) FN_GLOBAL_BOOL(unix_password_sync, bUnixPasswdSync) FN_GLOBAL_BOOL(use_mmap, bUseMmap) FN_GLOBAL_BOOL(use_ntdb, bUseNtdb) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 9bdb7a117de..f4701bad526 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -1582,7 +1582,7 @@ static struct parm_struct parm_table[] = { .label = "unix extensions", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bUnixExtensions), + .offset = GLOBAL_VAR(unix_extensions), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 09f2988fc3a..e5476cc7da4 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -891,7 +891,7 @@ static void init_globals(bool reinit_globals) Globals.bUseMmap = true; #endif Globals.unicode = true; - Globals.bUnixExtensions = true; + Globals.unix_extensions = true; Globals.reset_on_zero_vc = false; Globals.log_writeable_files_on_exit = false; Globals.create_krb5_conf = true; -- 2.11.4.GIT