diff options
-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 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, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index cd27b116b5..8d314da373 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -251,7 +251,7 @@ static struct loadparm_service sDefault = .inherit_acls = false, .inherit_owner = false, .msdfs_root = false, - .bUseClientDriver = false, + .use_client_driver = false, .bDefaultDevmode = true, .bForcePrintername = false, .bNTAclSupport = true, |