From ff71222024503178ecc38bdc4b53ef420614a948 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Tue, 11 May 1999 07:54:38 +0000 Subject: [PATCH] And I thought I could spell ... but in caps really everything looks the same. Submitted by: Reviewed by: PR: --- ssl/ssl.h | 2 +- ssl/ssl_err.c | 2 +- ssl/ssl_lib.c | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ssl/ssl.h b/ssl/ssl.h index 347d087774..e8d7441344 100644 --- a/ssl/ssl.h +++ b/ssl/ssl.h @@ -1402,7 +1402,7 @@ int SSL_COMP_add_compression_method(int id,char *cm); #define SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES 243 #define SSL_R_UNEXPECTED_MESSAGE 244 #define SSL_R_UNEXPECTED_RECORD 245 -#define SSL_R_UNITIALIZED 275 +#define SSL_R_UNINITIALIZED 276 #define SSL_R_UNKNOWN_ALERT_TYPE 246 #define SSL_R_UNKNOWN_CERTIFICATE_TYPE 247 #define SSL_R_UNKNOWN_CIPHER_RETURNED 248 diff --git a/ssl/ssl_err.c b/ssl/ssl_err.c index 6f99f4cbbb..1f3bf15b62 100644 --- a/ssl/ssl_err.c +++ b/ssl/ssl_err.c @@ -368,7 +368,7 @@ static ERR_STRING_DATA SSL_str_reasons[]= {SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES ,"unable to load ssl3 sha1 routines"}, {SSL_R_UNEXPECTED_MESSAGE ,"unexpected message"}, {SSL_R_UNEXPECTED_RECORD ,"unexpected record"}, -{SSL_R_UNITIALIZED ,"unitialized"}, +{SSL_R_UNINITIALIZED ,"uninitialized"}, {SSL_R_UNKNOWN_ALERT_TYPE ,"unknown alert type"}, {SSL_R_UNKNOWN_CERTIFICATE_TYPE ,"unknown certificate type"}, {SSL_R_UNKNOWN_CIPHER_RETURNED ,"unknown cipher returned"}, 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; } -- 2.34.1