summaryrefslogtreecommitdiffstats
path: root/lib/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-12-24 16:03:35 +1300
committerJeremy Allison <jra@samba.org>2014-01-24 16:18:48 -0800
commit7af10e8184e2864d6f4311e33b41d04a7172c473 (patch)
tree90de1a0b9200cc8c22c10702851a211f2cbd6bfb /lib/param
parent65f2c180b031e1dcc6d1e63eb8ff6c84fdc6bd4a (diff)
downloadsamba-7af10e8184e2864d6f4311e33b41d04a7172c473.tar.gz
samba-7af10e8184e2864d6f4311e33b41d04a7172c473.tar.xz
samba-7af10e8184e2864d6f4311e33b41d04a7172c473.zip
param: Rename variable used for lp_use_client_driver bUseClientDriver
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.c2
-rw-r--r--lib/param/param_table.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c
index 9b97531f9e..1f389a4bf9 100644
--- a/lib/param/param_functions.c
+++ b/lib/param/param_functions.c
@@ -119,7 +119,7 @@ FN_LOCAL_BOOL(blocking_locks, blocking_locks)
FN_LOCAL_BOOL(inherit_perms, inherit_perms)
FN_LOCAL_BOOL(inherit_acls, inherit_acls)
FN_LOCAL_BOOL(inherit_owner, inherit_owner)
-FN_LOCAL_BOOL(use_client_driver, bUseClientDriver)
+FN_LOCAL_BOOL(use_client_driver, use_client_driver)
FN_LOCAL_BOOL(default_devmode, bDefaultDevmode)
FN_LOCAL_BOOL(force_printername, bForcePrintername)
FN_LOCAL_BOOL(nt_acl_support, bNTAclSupport)
diff --git a/lib/param/param_table.c b/lib/param/param_table.c
index bf64018fd5..38ec0c14c2 100644
--- a/lib/param/param_table.c
+++ b/lib/param/param_table.c
@@ -2312,7 +2312,7 @@ static struct parm_struct parm_table[] = {
.label = "use client driver",
.type = P_BOOL,
.p_class = P_LOCAL,
- .offset = LOCAL_VAR(bUseClientDriver),
+ .offset = LOCAL_VAR(use_client_driver),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED | FLAG_PRINT,