diff options
author | Bodo Möller <bodo@openssl.org> | 1999-05-11 09:54:38 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-05-11 09:54:38 +0200 |
commit | ff71222024503178ecc38bdc4b53ef420614a948 (patch) | |
tree | 821eabc3b930edc53383171e9485e5d735e23b24 /ssl/ssl_lib.c | |
parent | Make SSL library a little more fool-proof by not requiring any longer (diff) | |
download | openssl-ff71222024503178ecc38bdc4b53ef420614a948.tar.xz openssl-ff71222024503178ecc38bdc4b53ef420614a948.zip |
And I thought I could spell ... but in caps really everything looks the same.
Submitted by:
Reviewed by:
PR:
Diffstat (limited to 'ssl/ssl_lib.c')
-rw-r--r-- | ssl/ssl_lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index 8aba87433f..18564170cc 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c @@ -617,7 +617,7 @@ int SSL_read(SSL *s,char *buf,int num) { if (s->handshake_func == 0) { - SSLerr(SSL_F_SSL_READ, SSL_R_UNITIALIZED); + SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED); return -1; } @@ -642,7 +642,7 @@ int SSL_write(SSL *s,const char *buf,int num) { if (s->handshake_func == 0) { - SSLerr(SSL_F_SSL_WRITE, SSL_R_UNITIALIZED); + SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED); return -1; } @@ -659,7 +659,7 @@ int SSL_shutdown(SSL *s) { if (s->handshake_func == 0) { - SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNITIALIZED); + SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED); return -1; } |