From: Ivo Timmermans Date: Tue, 16 Apr 2002 21:47:18 +0000 (+0000) Subject: Corrected typo (tree instead of hooks) X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=e8effcf93d25847358118445eee3c3c80a40042c Corrected typo (tree instead of hooks) --- diff --git a/lib/hooks.c b/lib/hooks.c index ec528121..2ecdd1e9 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;