From: Dr. Stephen Henson Date: Sat, 5 Feb 2005 17:22:14 +0000 (+0000) Subject: In mkdef.pl ignore trailing whitespace in #ifdef lines X-Git-Tag: OpenSSL_0_9_7g~17^2~46 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8aa36bcac9b75f5f85048e2359ccfd44383d178c;p=oweals%2Fopenssl.git In mkdef.pl ignore trailing whitespace in #ifdef lines --- diff --git a/util/mkdef.pl b/util/mkdef.pl index 204a056a48..98cd12706c 100755 --- a/util/mkdef.pl +++ b/util/mkdef.pl @@ -479,7 +479,7 @@ sub do_defs push(@tag,$1); $tag{$1}=-1; } - } elsif (/^\#\s*ifdef\s+(.*)/) { + } elsif (/^\#\s*ifdef\s+(\S*)/) { push(@tag,"-"); push(@tag,$1); $tag{$1}=1;