Always set "registry shares = yes" for "include = registry"
authorVolker Lendecke <vl@samba.org>
Tue, 3 Jun 2008 18:51:42 +0000 (20:51 +0200)
committerVolker Lendecke <vl@samba.org>
Tue, 3 Jun 2008 19:36:56 +0000 (21:36 +0200)
This fixes the case where "include = registry" is set in the smb.conf text file
and *only* shares (no [global] settings) are present in the registry.

Michael, please check!

Thanks,

Volker
(This used to be commit 6c80362e291d8c5e748b987a583e8e32acc36354)

source3/param/loadparm.c

index ef6648aec17b57544a5aba86c6c00bb7baf6b14f..1ce88df400cef094df075845e4a32614a50299dc 100644 (file)
@@ -6558,6 +6558,11 @@ static bool process_registry_globals(void)
                goto done;
        }
 
+       ret = do_parameter("registry shares", "yes", NULL);
+       if (!ret) {
+               goto done;
+       }
+
        if (!smbconf_share_exists(conf_ctx, GLOBAL_NAME)) {
                /* nothing to read from the registry yet but make sure lp_load
                 * doesn't return false */
@@ -6575,7 +6580,6 @@ static bool process_registry_globals(void)
                goto done;
        }
 
-       ret = do_parameter("registry shares", "yes", NULL);
        /* store the csn */
        smbconf_changed(conf_ctx, &conf_last_csn, NULL, NULL);