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:
fe165e4
)
make sure mklink.pl looks at ERR_load_...
author
Bodo Möller
<bodo@openssl.org>
Wed, 19 Dec 2001 19:48:51 +0000
(19:48 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Wed, 19 Dec 2001 19:48:51 +0000
(19:48 +0000)
util/libeay.num
patch
|
blob
|
history
util/mkdef.pl
patch
|
blob
|
history
diff --git
a/util/libeay.num
b/util/libeay.num
index 651c85fcb65997ab9576824e0e14b3f26387b659..26e69dd6c1390bf2a8fc1a4b1acd5a7e14f7e1bd 100755
(executable)
--- a/
util/libeay.num
+++ b/
util/libeay.num
@@
-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:
diff --git
a/util/mkdef.pl
b/util/mkdef.pl
index 8ec1d07989a9fe597dde14dca672e7decdd3b248..d7b5e6f18b888182f7ba566a18fc1c2be8f2c592 100755
(executable)
--- a/
util/mkdef.pl
+++ b/
util/mkdef.pl
@@
-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 = '';