summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-04-04 14:19:00 +0000
committerRichard Levitte <levitte@openssl.org>2003-04-04 14:19:00 +0000
commitb5f96e8818188c542dcff3d38deb9303ccd2ccca (patch)
treefbfd7ab22cf87d499682d23f148711ac6a962e46 /util
parent3ae70939baf60524135f7e3c47e93ad2a55e611b (diff)
There's no need to check for __attribute__ with ANSI functions, since
we only check to the opening parenthesis anyway...
Diffstat (limited to 'util')
-rw-r--r--util/mkerr.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mkerr.pl b/util/mkerr.pl
index cf34a35ce1..1b2915c767 100644
--- a/util/mkerr.pl
+++ b/util/mkerr.pl
@@ -128,7 +128,7 @@ while (($hdr, $lib) = each %libinc)
s/^[\n\s]*//g;
s/[\n\s]*$//g;
next if(/typedef\W/);
- if (/\(\*(\w*)\([^\)]+\)(\s*__attribute__\(.*\)\s*)?$/) {
+ if (/\(\*(\w*)\([^\)]+/) {
my $name = $1;
$name =~ tr/[a-z]/[A-Z]/;
$ftrans{$name} = $1;