From 56e9e7d9d88bb283267c1f5d99b0273139865acf Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 24 Dec 2013 16:03:30 +1300 Subject: [PATCH] param: Rename variable used for lp_print_notify_backchannel bPrintNotifyBackchannel Signed-off-by: Andrew Bartlett Signed-off-by: Garming Sam Reviewed-by: Jeremy Allison --- lib/param/param_functions.c | 2 +- lib/param/param_table.c | 2 +- source3/param/loadparm.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index 8fe905e6b0b..07740d1bebb 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -94,7 +94,7 @@ FN_LOCAL_BOOL(access_based_share_enum, access_based_share_enum) FN_LOCAL_BOOL(guest_ok, guest_ok) FN_LOCAL_BOOL(guest_only, guest_only) FN_LOCAL_BOOL(administrative_share, administrative_share) -FN_LOCAL_BOOL(print_notify_backchannel, bPrintNotifyBackchannel) +FN_LOCAL_BOOL(print_notify_backchannel, print_notify_backchannel) FN_LOCAL_BOOL(store_dos_attributes, bStoreDosAttributes) FN_LOCAL_BOOL(dmapi_support, bDmapiSupport) FN_LOCAL_PARM_BOOL(locking, bLocking) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index f4fda9fc36d..154c82c688a 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -2085,7 +2085,7 @@ static struct parm_struct parm_table[] = { .label = "print notify backchannel", .type = P_BOOL, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bPrintNotifyBackchannel), + .offset = LOCAL_VAR(print_notify_backchannel), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 9cef550e64f..8fc91b01ec7 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -218,7 +218,7 @@ static struct loadparm_service sDefault = .administrative_share = false, .guest_ok = false, .print_ok = false, - .bPrintNotifyBackchannel = false, + .print_notify_backchannel = false, .map_system = false, .map_hidden = false, .map_archive = true, -- 2.34.1