From: Michael Adam Date: Sat, 22 Mar 2008 00:53:44 +0000 (+0100) Subject: registry: some whitespace cleanup in init_registry(). X-Git-Tag: samba-3.3.0pre1~3160 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f33095e44ba22f4451a5deeffdd4f9ed3f99ed85;p=thirdparty%2Fsamba.git registry: some whitespace cleanup in init_registry(). Michael --- diff --git a/source/registry/reg_init_full.c b/source/registry/reg_init_full.c index 518cccb1b26..ad245cb52e9 100644 --- a/source/registry/reg_init_full.c +++ b/source/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(®_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;