summaryrefslogtreecommitdiff
path: root/source3/registry/reg_init_basic.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-13 15:21:31 +0200
committerMichael Adam <obnox@samba.org>2008-04-13 15:33:48 +0200
commit4ae2e8c7ba7f4bf12e83c68eacd9cb4c1b914be5 (patch)
tree636a057878c770460c4765e36d17276ef0d3956c /source3/registry/reg_init_basic.c
parent3f01e05a77eec61f367e5cce7908bdcf02d1749a (diff)
downloadsamba-4ae2e8c7ba7f4bf12e83c68eacd9cb4c1b914be5.tar.gz
samba-4ae2e8c7ba7f4bf12e83c68eacd9cb4c1b914be5.tar.bz2
samba-4ae2e8c7ba7f4bf12e83c68eacd9cb4c1b914be5.zip
registry: refactor common part of registry initialization out.
into a new function registry_init_common(). Michael (This used to be commit 5da52b95ac69e4abfbc44335df2447bec8f16e13)
Diffstat (limited to 'source3/registry/reg_init_basic.c')
-rw-r--r--source3/registry/reg_init_basic.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/source3/registry/reg_init_basic.c b/source3/registry/reg_init_basic.c
index cdf172c289..c5e2c346b0 100644
--- a/source3/registry/reg_init_basic.c
+++ b/source3/registry/reg_init_basic.c
@@ -22,26 +22,34 @@
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_REGISTRY
-WERROR registry_init_basic(void)
+WERROR registry_init_common(void)
{
WERROR werr;
- DEBUG(10, ("registry_init_basic called\n"));
-
werr = regdb_init();
if (!W_ERROR_IS_OK(werr)) {
- DEBUG(1, ("Failed to initialize the registry: %s\n",
+ DEBUG(0, ("Failed to initialize the registry: %s\n",
dos_errstr(werr)));
goto done;
}
werr = reghook_cache_init();
if (!W_ERROR_IS_OK(werr)) {
- DEBUG(1, ("Failed to initialize the reghook cache: %s\n",
+ DEBUG(0, ("Failed to initialize the reghook cache: %s\n",
dos_errstr(werr)));
}
done:
+ return werr;
+}
+
+WERROR registry_init_basic(void)
+{
+ WERROR werr;
+
+ DEBUG(10, ("registry_init_basic called\n"));
+
+ werr = registry_init_common();
regdb_close();
return werr;
}