summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-04-10 20:12:24 +0000
committerRichard Levitte <levitte@openssl.org>2003-04-10 20:12:24 +0000
commit345d8d572cfd7fc3049551618f14d5f68be2a88a (patch)
tree990aac67894ac6af8faf6306ded0a60c6ea0d948
parent966eac3dbd51b44fcdfea37696668d4d59ed9800 (diff)
Recent changes from 0.9.6-stable
-rwxr-xr-xutil/mkdef.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index d84acfa3e5..4a11a4ad0b 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -315,6 +315,10 @@ sub do_defs
}
s/\/\*.*?\*\///gs; # ignore comments
+ if (/\/\*/) { # if we have part
+ $line = $_; # of a comment,
+ next; # continue reading
+ }
s/{[^{}]*}//gs; # ignore {} blocks
if (/^\#\s*ifndef (.*)/) {
push(@tag,$1);