diff options
author | Bodo Möller <bodo@openssl.org> | 2005-04-26 20:53:22 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2005-04-26 20:53:22 +0200 |
commit | aa4ce7315f65fdf8940d5bc9e562aa478f0335d3 (patch) | |
tree | 204f2143da41bd1cdff17503baeab94ea58d4e89 /ssl/s3_lib.c | |
parent | take OPENSSL_NO_DGRAM into account (diff) | |
download | openssl-aa4ce7315f65fdf8940d5bc9e562aa478f0335d3.tar.xz openssl-aa4ce7315f65fdf8940d5bc9e562aa478f0335d3.zip |
Fix various incorrect error function codes.
("perl util/ck_errf.pl */*.c */*/*.c" still reports many more.)
Diffstat (limited to 'ssl/s3_lib.c')
-rw-r--r-- | ssl/s3_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index 08d27243b9..2b2d2bdade 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -1833,7 +1833,7 @@ long ssl3_ctx_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg) } if (!EC_KEY_up_ref((EC_KEY *)parg)) { - SSLerr(SSL_F_SSL3_CTRL,ERR_R_ECDH_LIB); + SSLerr(SSL_F_SSL3_CTX_CTRL,ERR_R_ECDH_LIB); return 0; } ecdh = (EC_KEY *)parg; |