diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:28 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:45 -0800 |
commit | e2f33cede856e57766f7764fd47cb8a07b26bcc0 (patch) | |
tree | b3de901722ce49a95c2e247a53ba371226067b37 | |
parent | a699f9c430a2bb3dce0e04a0b5c0f3de0f379896 (diff) | |
download | samba-e2f33cede856e57766f7764fd47cb8a07b26bcc0.tar.gz samba-e2f33cede856e57766f7764fd47cb8a07b26bcc0.tar.xz samba-e2f33cede856e57766f7764fd47cb8a07b26bcc0.zip |
param: Rename variable used for lp_shortpreservecase bShortCasePreserve
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 48305e694c..2bbf537ac4 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -85,7 +85,7 @@ FN_LOCAL_BOOL(preexec_close, preexec_close) FN_LOCAL_BOOL(rootpreexec_close, rootpreexec_close) FN_LOCAL_INTEGER(casesensitive, casesensitive) FN_LOCAL_BOOL(preservecase, preservecase) -FN_LOCAL_BOOL(shortpreservecase, bShortCasePreserve) +FN_LOCAL_BOOL(shortpreservecase, shortpreservecase) FN_LOCAL_BOOL(hide_dot_files, bHideDotFiles) FN_LOCAL_BOOL(hide_special_files, bHideSpecialFiles) FN_LOCAL_BOOL(hideunreadable, bHideUnReadable) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index d61268e9d9..dc3d9511bc 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -2406,7 +2406,7 @@ static struct parm_struct parm_table[] = { .label = "short preserve case", .type = P_BOOL, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bShortCasePreserve), + .offset = LOCAL_VAR(shortpreservecase), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 7d663b924a..9e59fda5d6 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -205,7 +205,7 @@ static struct loadparm_service sDefault = .rootpreexec_close = false, .casesensitive = Auto, .preservecase = true, - .bShortCasePreserve = true, + .shortpreservecase = true, .bHideDotFiles = true, .bHideSpecialFiles = false, .bHideUnReadable = false, |