aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-11 07:54:38 +0000
committerBodo Möller <bodo@openssl.org>1999-05-11 07:54:38 +0000
commitff71222024503178ecc38bdc4b53ef420614a948 (patch)
tree821eabc3b930edc53383171e9485e5d735e23b24 /ssl
parentb31b04d951e9b65bde29657e1ae057b76f0f0a73 (diff)
downloadopenssl-ff71222024503178ecc38bdc4b53ef420614a948.zip
openssl-ff71222024503178ecc38bdc4b53ef420614a948.tar.gz
openssl-ff71222024503178ecc38bdc4b53ef420614a948.tar.bz2
And I thought I could spell ... but in caps really everything looks the same.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl.h2
-rw-r--r--ssl/ssl_err.c2
-rw-r--r--ssl/ssl_lib.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/ssl/ssl.h b/ssl/ssl.h
index 347d087..e8d7441 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 6f99f4c..1f3bf15 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 8aba874..1856417 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;
}