diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:17 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:42 -0800 |
commit | 63c92f7e986ed1e6e0e81f60ec9df2728836d287 (patch) | |
tree | bbea917a703080574483c28652df4f744051af76 /lib/param/param_table.c | |
parent | d7b18d1e56418cd5419656dd24b706857235869d (diff) | |
download | samba-63c92f7e986ed1e6e0e81f60ec9df2728836d287.tar.gz samba-63c92f7e986ed1e6e0e81f60ec9df2728836d287.tar.xz samba-63c92f7e986ed1e6e0e81f60ec9df2728836d287.zip |
param: Rename variable used for lp_readonly bRead_only
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/param_table.c')
-rw-r--r-- | lib/param/param_table.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index b5f99c7518..c6fc2ce958 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -845,7 +845,7 @@ static struct parm_struct parm_table[] = { .label = "read only", .type = P_BOOL, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bRead_only), + .offset = LOCAL_VAR(readonly), .special = NULL, .enum_list = NULL, .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE, @@ -854,7 +854,7 @@ static struct parm_struct parm_table[] = { .label = "write ok", .type = P_BOOLREV, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bRead_only), + .offset = LOCAL_VAR(readonly), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, @@ -863,7 +863,7 @@ static struct parm_struct parm_table[] = { .label = "writeable", .type = P_BOOLREV, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bRead_only), + .offset = LOCAL_VAR(readonly), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, @@ -872,7 +872,7 @@ static struct parm_struct parm_table[] = { .label = "writable", .type = P_BOOLREV, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bRead_only), + .offset = LOCAL_VAR(readonly), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, |