1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

registry: unify debug output in the registry init functions.

Michael
(This used to be commit 4fd9b45ffc)
This commit is contained in:
Michael Adam
2008-04-13 12:46:21 +02:00
parent 6b85938f27
commit cb624c4057
3 changed files with 9 additions and 9 deletions

View File

@ -30,7 +30,8 @@ bool registry_init_basic(void)
werr = regdb_init();
if (!W_ERROR_IS_OK(werr)) {
DEBUG(1, ("Can't open the registry: %s\n", dos_errstr(werr)));
DEBUG(1, ("Failed to initialize the registry: %s\n",
dos_errstr(werr)));
return false;
}
regdb_close();