From f0d7ae39c00627ebc1e43927ae5df42762e73d95 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 23 May 2004 13:55:52 +0000 Subject: r833: Compile error (This used to be commit e4f6ca85223b86beac237398ea5474f4f56404a2) --- source4/lib/registry/common/reg_interface.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/lib') diff --git a/source4/lib/registry/common/reg_interface.c b/source4/lib/registry/common/reg_interface.c index 93e5b60984..6acedb3591 100644 --- a/source4/lib/registry/common/reg_interface.c +++ b/source4/lib/registry/common/reg_interface.c @@ -60,11 +60,12 @@ static struct reg_init_function_entry *reg_find_backend_entry(const char *name) { struct reg_init_function_entry *entry; static BOOL reg_first_init = True; + NTSTATUS status; if(reg_first_init) { status = register_subsystem("registry", registry_register); if (!NT_STATUS_IS_OK(status)) - return WERR_GENERAL_FAILURE; + return NULL; static_init_registry; reg_first_init = False; -- cgit