diff options
author | levitte <levitte> | 2003-04-10 20:12:24 +0000 |
---|---|---|
committer | levitte <levitte> | 2003-04-10 20:12:24 +0000 |
commit | c7e8b17ca107451872ab28d049a649a4bb3b2717 (patch) | |
tree | b78cd80944c284338cd0f3074220ae00041287ad | |
parent | 78e733c8d70444ba1a10d4c39a409c8414803db9 (diff) | |
download | openssl-c7e8b17ca107451872ab28d049a649a4bb3b2717.tar.gz |
Recent changes from 0.9.6-stable
-rwxr-xr-x | util/mkdef.pl | 4 |
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); |