From 80b6d7b1d66509162da04e143d42fdd35a4c61e5 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 13 Apr 2008 14:55:49 +0200 Subject: registry: change reghook_cache_add() to return WERROR instead of bool Michael (This used to be commit e65a999989c97c4c7b0af5093e0e89583691e9a8) --- source3/registry/reg_init_full.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (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 8c834c4abb..e24cb61481 100644 --- a/source3/registry/reg_init_full.c +++ b/source3/registry/reg_init_full.c @@ -93,8 +93,10 @@ bool init_registry( void ) } for ( i=0; reg_hooks[i].keyname; i++ ) { - if (!reghook_cache_add(reg_hooks[i].keyname, reg_hooks[i].ops)) + werr = reghook_cache_add(reg_hooks[i].keyname, reg_hooks[i].ops); + if (!W_ERROR_IS_OK(werr)) { goto fail; + } } if ( DEBUGLEVEL >= 20 ) -- cgit