make sure mklink.pl looks at ERR_load_...

This commit is contained in:
Bodo Möller 2001-12-19 19:48:51 +00:00
parent fe165e465b
commit 24ceef033a
2 changed files with 4 additions and 1 deletions

View File

@ -1875,3 +1875,4 @@ OPENSSL_issetugid 2465 EXIST::FUNCTION:
BN_rand_range 2466 EXIST::FUNCTION:
BN_pseudo_rand_range 2523 EXIST::FUNCTION:
X509_STORE_CTX_set_verify_cb 2524 EXIST::FUNCTION:
ERR_load_COMP_strings 2525 EXIST::FUNCTION:

View File

@ -293,8 +293,10 @@ sub do_defs
TRUE => 1,
);
my $symhacking = $file eq $symhacksfile;
my $begin_error_codes = 0;
while(<IN>) {
last if (/BEGIN ERROR CODES/);
$begin_error_codes = 1 if (/BEGIN ERROR CODES/);
last if ($begin_error_codes && /Error codes for /);
if ($line ne '') {
$_ = $line . $_;
$line = '';