From e8effcf93d25847358118445eee3c3c80a40042c Mon Sep 17 00:00:00 2001 From: Ivo Timmermans Date: Tue, 16 Apr 2002 21:47:18 +0000 Subject: [PATCH] Corrected typo (tree instead of hooks) --- lib/hooks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/hooks.c b/lib/hooks.c index ec52812..2ecdd1e 100644 --- a/lib/hooks.c +++ b/lib/hooks.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: hooks.c,v 1.1.2.3 2002/04/16 21:24:55 zarq Exp $ + $Id: hooks.c,v 1.1.2.4 2002/04/16 21:47:18 zarq Exp $ */ #include "config.h" @@ -68,7 +68,7 @@ void run_hooks(const char *type, ...) if(!hooks_tree) return; hn = (struct hooks_node*)avl_search(hooks_tree, type); - if(!hn) + if(!hn || !(hn->hooks->head)) { fprintf(stderr, "Warning, no hooks found for `%s'\n", type); return; -- 2.25.1