summaryrefslogtreecommitdiff
path: root/source3/registry/reg_init_full.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-03-22 01:53:44 +0100
committerMichael Adam <obnox@samba.org>2008-03-22 01:53:44 +0100
commitb8a949b566ec84b72b7f62dc095cddf78b615f3e (patch)
tree797281227a9eca4b0833d8df32576ad323f88429 /source3/registry/reg_init_full.c
parent88d46f4ea40c7e6efe357732c6427ad33f47c272 (diff)
downloadsamba-b8a949b566ec84b72b7f62dc095cddf78b615f3e.tar.gz
samba-b8a949b566ec84b72b7f62dc095cddf78b615f3e.tar.bz2
samba-b8a949b566ec84b72b7f62dc095cddf78b615f3e.zip
registry: some whitespace cleanup in init_registry().
Michael (This used to be commit f33095e44ba22f4451a5deeffdd4f9ed3f99ed85)
Diffstat (limited to 'source3/registry/reg_init_full.c')
-rw-r--r--source3/registry/reg_init_full.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/source3/registry/reg_init_full.c b/source3/registry/reg_init_full.c
index 518cccb1b2..ad245cb52e 100644
--- a/source3/registry/reg_init_full.c
+++ b/source3/registry/reg_init_full.c
@@ -61,29 +61,30 @@ REGISTRY_HOOK reg_hooks[] = {
Open the registry database and initialize the REGISTRY_HOOK cache
with all available backens.
***********************************************************************/
-
+
bool init_registry( void )
{
int i;
bool ret = false;
-
-
+
if ( !regdb_init() ) {
- DEBUG(0,("init_registry: failed to initialize the registry tdb!\n"));
+ DEBUG(0, ("init_registry: failed to initialize the registry "
+ "tdb!\n"));
goto fail;
}
/* setup the necessary keys and values */
if ( !init_registry_data() ) {
- DEBUG(0,("regdb_init: Failed to initialize data in registry!\n"));
+ DEBUG(0, ("regdb_init: Failed to initialize data in "
+ "registry!\n"));
goto fail;
}
/* build the cache tree of registry hooks */
-
+
reghook_cache_init();
-
+
for ( i=0; reg_hooks[i].keyname; i++ ) {
if ( !reghook_cache_add(&reg_hooks[i]) )
goto fail;
@@ -98,9 +99,9 @@ bool init_registry( void )
eventlog_init_keys();
perfcount_init_keys();
-
ret = true;
- fail:
+
+fail:
/* close and let each smbd open up as necessary */
regdb_close();
return ret;