1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

param: Rename variable used for lp_acl_allow_execute_always bAclAllowExecuteAlways

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Andrew Bartlett
2013-12-24 16:03:38 +13:00
committed by Jeremy Allison
parent 50d8c2577a
commit 6f01e34000
3 changed files with 3 additions and 3 deletions

View File

@ -132,7 +132,7 @@ FN_LOCAL_BOOL(afs_share, afs_share)
FN_LOCAL_BOOL(acl_check_permissions, acl_check_permissions)
FN_LOCAL_BOOL(acl_group_control, acl_group_control)
FN_LOCAL_BOOL(acl_map_full_control, acl_map_full_control)
FN_LOCAL_BOOL(acl_allow_execute_always, bAclAllowExecuteAlways)
FN_LOCAL_BOOL(acl_allow_execute_always, acl_allow_execute_always)
FN_LOCAL_INTEGER(defaultcase, iDefaultCase)
FN_LOCAL_INTEGER(minprintspace, iMinPrintSpace)
FN_LOCAL_INTEGER(printing, iPrinting)

View File

@ -908,7 +908,7 @@ static struct parm_struct parm_table[] = {
.label = "acl allow execute always",
.type = P_BOOL,
.p_class = P_LOCAL,
.offset = LOCAL_VAR(bAclAllowExecuteAlways),
.offset = LOCAL_VAR(acl_allow_execute_always),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,

View File

@ -264,7 +264,7 @@ static struct loadparm_service sDefault =
.acl_check_permissions = true,
.acl_map_full_control = true,
.acl_group_control = false,
.bAclAllowExecuteAlways = false,
.acl_allow_execute_always = false,
.bChangeNotify = true,
.bKernelChangeNotify = true,
.iallocation_roundup_size = SMB_ROUNDUP_ALLOCATION_SIZE,