diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:18 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:42 -0800 |
commit | 6d0b2ef47f5c412fc73e88e05244e59866b4aaff (patch) | |
tree | 1fd99d4856a0b5b4d3c6beb44d45906c6f8b76d9 /lib/param/param_table.c | |
parent | 63c92f7e986ed1e6e0e81f60ec9df2728836d287 (diff) | |
download | samba-6d0b2ef47f5c412fc73e88e05244e59866b4aaff.tar.gz samba-6d0b2ef47f5c412fc73e88e05244e59866b4aaff.tar.xz samba-6d0b2ef47f5c412fc73e88e05244e59866b4aaff.zip |
param: Rename variable used for lp_print_ok bPrint_ok
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index c6fc2ce958..0348948e69 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -2076,7 +2076,7 @@ static struct parm_struct parm_table[] = { .label = "printable", .type = P_BOOL, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bPrint_ok), + .offset = LOCAL_VAR(print_ok), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED | FLAG_PRINT, @@ -2094,7 +2094,7 @@ static struct parm_struct parm_table[] = { .label = "print ok", .type = P_BOOL, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bPrint_ok), + .offset = LOCAL_VAR(print_ok), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, |