projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdee69f
)
Fix to allow multiple NONE libraries in mkerr.pl .
author
Dr. Stephen Henson
<steve@openssl.org>
Thu, 10 May 2001 00:07:45 +0000
(
00:07
+0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Thu, 10 May 2001 00:07:45 +0000
(
00:07
+0000)
util/mkerr.pl
patch
|
blob
|
history
diff --git
a/util/mkerr.pl
b/util/mkerr.pl
index 7dbe24629722df2c87992ad4dbc245527c606fcc..e812b9fc006d8b0194c0cf8955fc28743dccbd83 100644
(file)
--- a/
util/mkerr.pl
+++ b/
util/mkerr.pl
@@
-53,6
+53,7
@@
while(<IN>)
{
if(/^L\s+(\S+)\s+(\S+)\s+(\S+)/) {
$hinc{$1} = $2;
+ $libinc{$2} = $1;
$cskip{$3} = $1;
if($3 ne "NONE") {
$csrc{$1} = $3;
@@
-74,7
+75,7
@@
close IN;
# Scan each header file in turn and make a list of error codes
# and function names
-while (($
lib, $hdr) = each %h
inc)
+while (($
hdr, $lib) = each %lib
inc)
{
next if($hdr eq "NONE");
print STDERR "Scanning header file $hdr\n" if $debug;