diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:46 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:52 -0800 |
commit | 6704919643074eca7d68107c28f6338fde6f46d0 (patch) | |
tree | 1d00ce6d4616de4739ca3a8685a644045ce5e808 /lib/param/param_table.c | |
parent | 3579bf9d3de78a06cd5445a25683dc2cb4a46344 (diff) | |
download | samba-6704919643074eca7d68107c28f6338fde6f46d0.tar.gz samba-6704919643074eca7d68107c28f6338fde6f46d0.tar.xz samba-6704919643074eca7d68107c28f6338fde6f46d0.zip |
param: Rename variable used for lp__disable_spoolss bDisableSpoolss
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 9ffc4d4578..70e1e953f2 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -2167,7 +2167,7 @@ static struct parm_struct parm_table[] = { .label = "disable spoolss", .type = P_BOOL, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bDisableSpoolss), + .offset = GLOBAL_VAR(_disable_spoolss), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL, @@ -2176,7 +2176,7 @@ static struct parm_struct parm_table[] = { .label = "enable spoolss", .type = P_BOOLREV, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bDisableSpoolss), + .offset = GLOBAL_VAR(_disable_spoolss), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, |