summaryrefslogtreecommitdiff
path: root/source3/registry/reg_init_basic.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-13 15:12:04 +0200
committerMichael Adam <obnox@samba.org>2008-04-13 15:33:48 +0200
commit3f01e05a77eec61f367e5cce7908bdcf02d1749a (patch)
tree4e44157394784040311b06b17bcf184b12582d60 /source3/registry/reg_init_basic.c
parent80b6d7b1d66509162da04e143d42fdd35a4c61e5 (diff)
downloadsamba-3f01e05a77eec61f367e5cce7908bdcf02d1749a.tar.gz
samba-3f01e05a77eec61f367e5cce7908bdcf02d1749a.tar.bz2
samba-3f01e05a77eec61f367e5cce7908bdcf02d1749a.zip
registry: change registry_init_basic() to return WERROR instead of bool
Michael (This used to be commit 6a31e659cb371395dff0906786f3c6ef0cc2b3de)
Diffstat (limited to 'source3/registry/reg_init_basic.c')
-rw-r--r--source3/registry/reg_init_basic.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/registry/reg_init_basic.c b/source3/registry/reg_init_basic.c
index 72ab9d1e65..cdf172c289 100644
--- a/source3/registry/reg_init_basic.c
+++ b/source3/registry/reg_init_basic.c
@@ -22,7 +22,7 @@
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_REGISTRY
-bool registry_init_basic(void)
+WERROR registry_init_basic(void)
{
WERROR werr;
@@ -32,16 +32,16 @@ bool registry_init_basic(void)
if (!W_ERROR_IS_OK(werr)) {
DEBUG(1, ("Failed to initialize the registry: %s\n",
dos_errstr(werr)));
- return false;
+ goto done;
}
- regdb_close();
werr = reghook_cache_init();
if (!W_ERROR_IS_OK(werr)) {
DEBUG(1, ("Failed to initialize the reghook cache: %s\n",
dos_errstr(werr)));
- return false;
}
- return true;
+done:
+ regdb_close();
+ return werr;
}