summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevitte <levitte>2003-04-10 20:12:24 +0000
committerlevitte <levitte>2003-04-10 20:12:24 +0000
commitc7e8b17ca107451872ab28d049a649a4bb3b2717 (patch)
treeb78cd80944c284338cd0f3074220ae00041287ad
parent78e733c8d70444ba1a10d4c39a409c8414803db9 (diff)
downloadopenssl-c7e8b17ca107451872ab28d049a649a4bb3b2717.tar.gz
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 d84acfa3e..4a11a4ad0 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);