From 1cbb4a8453592e23ad851da69ec07201308a1b42 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 24 Dec 2013 16:03:30 +1300 Subject: param: Rename variable used for lp_administrative_share bAdministrative_share Signed-off-by: Andrew Bartlett Signed-off-by: Garming Sam Reviewed-by: Jeremy Allison --- source3/param/loadparm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/param/loadparm.c') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index c1cd4051c6..9cef550e64 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -215,7 +215,7 @@ static struct loadparm_service sDefault = .bAvailable = true, .readonly = true, .guest_only = false, - .bAdministrative_share = false, + .administrative_share = false, .guest_ok = false, .print_ok = false, .bPrintNotifyBackchannel = false, @@ -1744,7 +1744,7 @@ static bool lp_add_ipc(const char *ipc_name, bool guest_ok) ServicePtrs[i]->bAvailable = true; ServicePtrs[i]->readonly = true; ServicePtrs[i]->guest_only = false; - ServicePtrs[i]->bAdministrative_share = true; + ServicePtrs[i]->administrative_share = true; ServicePtrs[i]->guest_ok = guest_ok; ServicePtrs[i]->print_ok = false; ServicePtrs[i]->browseable = sDefault.browseable; -- cgit