summaryrefslogtreecommitdiff
path: root/source3/registry/reg_init_full.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-13 12:46:21 +0200
committerMichael Adam <obnox@samba.org>2008-04-13 15:33:47 +0200
commitcb624c40573b10fbb93c14a1aa436780ffd6caa4 (patch)
tree7cd719f78c375a3e454d23037947e961968a84d6 /source3/registry/reg_init_full.c
parent6b85938f275aad0fbb329ee46ed718ce8b101930 (diff)
downloadsamba-cb624c40573b10fbb93c14a1aa436780ffd6caa4.tar.gz
samba-cb624c40573b10fbb93c14a1aa436780ffd6caa4.tar.bz2
samba-cb624c40573b10fbb93c14a1aa436780ffd6caa4.zip
registry: unify debug output in the registry init functions.
Michael (This used to be commit 4fd9b45ffc08e7deeae58be3129832148748af13)
Diffstat (limited to 'source3/registry/reg_init_full.c')
-rw-r--r--source3/registry/reg_init_full.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/registry/reg_init_full.c b/source3/registry/reg_init_full.c
index e9273a044c..04eff36057 100644
--- a/source3/registry/reg_init_full.c
+++ b/source3/registry/reg_init_full.c
@@ -70,16 +70,15 @@ bool init_registry( void )
werr = regdb_init();
if (!W_ERROR_IS_OK(werr)) {
- DEBUG(0, ("init_registry: failed to initialize the registry "
- "(%s)\n", dos_errstr(werr)));
+ DEBUG(0, ("Failed to initialize the registry: %s\n",
+ dos_errstr(werr)));
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, ("Failed to initialize data in registry!\n"));
goto fail;
}