From cb624c40573b10fbb93c14a1aa436780ffd6caa4 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 13 Apr 2008 12:46:21 +0200 Subject: registry: unify debug output in the registry init functions. Michael (This used to be commit 4fd9b45ffc08e7deeae58be3129832148748af13) --- source3/registry/reg_init_full.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'source3/registry/reg_init_full.c') 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; } -- cgit