diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2001-05-10 02:07:45 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2001-05-10 02:07:45 +0200 |
commit | 016cadfb542569dc72a7523fd12a03b21d075336 (patch) | |
tree | c5d00b037765100bbdbd7150f621527e09abfebf /util | |
parent | Allow various X509_STORE_CTX properties to be (diff) | |
download | openssl-016cadfb542569dc72a7523fd12a03b21d075336.tar.xz openssl-016cadfb542569dc72a7523fd12a03b21d075336.zip |
Fix to allow multiple NONE libraries in mkerr.pl .
Diffstat (limited to 'util')
-rw-r--r-- | util/mkerr.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/mkerr.pl b/util/mkerr.pl index 7dbe246297..e812b9fc00 100644 --- 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 %hinc) +while (($hdr, $lib) = each %libinc) { next if($hdr eq "NONE"); print STDERR "Scanning header file $hdr\n" if $debug; |