make sure mklink.pl looks at ERR_load_...
This commit is contained in:
parent
fe165e465b
commit
24ceef033a
@ -1875,3 +1875,4 @@ OPENSSL_issetugid 2465 EXIST::FUNCTION:
|
|||||||
BN_rand_range 2466 EXIST::FUNCTION:
|
BN_rand_range 2466 EXIST::FUNCTION:
|
||||||
BN_pseudo_rand_range 2523 EXIST::FUNCTION:
|
BN_pseudo_rand_range 2523 EXIST::FUNCTION:
|
||||||
X509_STORE_CTX_set_verify_cb 2524 EXIST::FUNCTION:
|
X509_STORE_CTX_set_verify_cb 2524 EXIST::FUNCTION:
|
||||||
|
ERR_load_COMP_strings 2525 EXIST::FUNCTION:
|
||||||
|
@ -293,8 +293,10 @@ sub do_defs
|
|||||||
TRUE => 1,
|
TRUE => 1,
|
||||||
);
|
);
|
||||||
my $symhacking = $file eq $symhacksfile;
|
my $symhacking = $file eq $symhacksfile;
|
||||||
|
my $begin_error_codes = 0;
|
||||||
while(<IN>) {
|
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 '') {
|
if ($line ne '') {
|
||||||
$_ = $line . $_;
|
$_ = $line . $_;
|
||||||
$line = '';
|
$line = '';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user