diff options
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, |