From ae2c65467d93e9fbfdde5a942d44eff78a411e5d Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Thu, 26 Sep 2002 11:58:25 +0000 Subject: [PATCH] Improve hook matching. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96984 13f79535-47bb-0310-9956-ffa450edef68 --- support/list_hooks.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/list_hooks.pl b/support/list_hooks.pl index 6de9b41d12e..b2d0dd8ca5d 100755 --- a/support/list_hooks.pl +++ b/support/list_hooks.pl @@ -61,7 +61,7 @@ sub scanFile { $::Hooks{$name}->{declared}=$file; $::Hooks{$name}->{ret}=$ret; $::Hooks{$name}->{args}=$args; - } elsif(/AP_DECLARE_HOOK\(([^,]+),([^,]+)/) { + } elsif(/AP_DECLARE_HOOK\((\s*[^,\s]+)\s*,\s*([^,\s]+)/) { # really we should swallow subsequent lines to get the arguments... my $name=$2; my $ret=$1; -- 2.47.2