From 254cc7ae23f2b0108bada37b6b59dd90ac198469 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 22 Jul 2011 10:11:52 +0200 Subject: [PATCH] s3:loadparm: fix the reload of the configuration: also reload activated registry shares Autobuild-User: Michael Adam Autobuild-Date: Fri Jul 22 16:53:49 CEST 2011 on sn-devel-104 (cherry picked from commit efbe1602bd014eada4811f336bdccbf4692d3807) The last 2 patches address bug 8327 (config reload fails to reload shares from registry). --- source3/param/loadparm.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index ed01c9b29f3..bec525e59a8 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -9628,8 +9628,12 @@ static bool lp_load_ex(const char *pszFname, bRetval = false; } - if (bRetval && lp_registry_shares() && allow_registry_shares) { - bRetval = process_registry_shares(); + if (bRetval && lp_registry_shares()) { + if (allow_registry_shares) { + bRetval = process_registry_shares(); + } else { + bRetval = reload_registry_shares(); + } } lp_add_auto_services(lp_auto_services()); -- 2.34.1