1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

param: rename bWidelinks -> wide_links

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Michael Adam
2015-07-21 15:22:30 +02:00
committed by Jeremy Allison
parent 44619ad261
commit b7172b8f7c
3 changed files with 5 additions and 5 deletions

View File

@ -238,7 +238,7 @@ enum case_handling {CASE_LOWER,CASE_UPPER};
char *szCopy; \
char *szService; \
char *szInclude; \
bool bWidelinks; \
bool wide_links; \
bool bAvailable; \
struct parmlist_entry *param_opt; \
struct bitmap *copymap; \

View File

@ -3403,7 +3403,7 @@ struct parm_struct parm_table[] = {
.label = "wide links",
.type = P_BOOL,
.p_class = P_LOCAL,
.offset = LOCAL_VAR(bWidelinks),
.offset = LOCAL_VAR(wide_links),
.special = NULL,
.enum_list = NULL,
},

View File

@ -204,7 +204,7 @@ static struct loadparm_service sDefault =
.level2_oplocks = true,
.only_user = false,
.mangled_names = true,
.bWidelinks = false,
.wide_links = false,
.follow_symlinks = true,
.sync_always = false,
.strict_allocate = false,
@ -4298,8 +4298,8 @@ int lp_min_receive_file_size(void)
static bool lp_widelinks_internal(int snum)
{
return (bool)(LP_SNUM_OK(snum)? ServicePtrs[(snum)]->bWidelinks :
sDefault.bWidelinks);
return (bool)(LP_SNUM_OK(snum)? ServicePtrs[(snum)]->wide_links :
sDefault.wide_links);
}
void widelinks_warning(int snum)