aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-19 14:45:02 +0000
committerUlf Möller <ulf@openssl.org>1999-04-19 14:45:02 +0000
commitdf82f5c85c5443d96cdb6c0d61ff4ffe28965929 (patch)
tree7b070959b52bd157eaa665008a05bee01f110d2f /crypto/bio
parent46e8ddaf642be328eff89fb57a4229742508e81f (diff)
downloadopenssl-df82f5c85c5443d96cdb6c0d61ff4ffe28965929.tar.gz
Fix typos in error codes.
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bio.err4
-rw-r--r--crypto/bio/bio.h4
-rw-r--r--crypto/bio/bio_err.c4
-rw-r--r--crypto/bio/bio_lib.c8
-rw-r--r--crypto/bio/bss_conn.c2
5 files changed, 11 insertions, 11 deletions
diff --git a/crypto/bio/bio.err b/crypto/bio/bio.err
index e804f0d524..f6cb2ff3e4 100644
--- a/crypto/bio/bio.err
+++ b/crypto/bio/bio.err
@@ -35,7 +35,7 @@
#define BIO_R_KEEPALIVE 109
#define BIO_R_NBIO_CONNECT_ERROR 110
#define BIO_R_NO_ACCEPT_PORT_SPECIFIED 111
-#define BIO_R_NO_HOSTHNAME_SPECIFIED 112
+#define BIO_R_NO_HOSTNAME_SPECIFIED 112
#define BIO_R_NO_PORT_DEFINED 113
#define BIO_R_NO_PORT_SPECIFIED 114
#define BIO_R_NULL_PARAMETER 115
@@ -43,6 +43,6 @@
#define BIO_R_UNABLE_TO_BIND_SOCKET 117
#define BIO_R_UNABLE_TO_CREATE_SOCKET 118
#define BIO_R_UNABLE_TO_LISTEN_SOCKET 119
-#define BIO_R_UNINITALISED 120
+#define BIO_R_UNINITIALIZED 120
#define BIO_R_UNSUPPORTED_METHOD 121
#define BIO_R_WSASTARTUP 122
diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h
index 0f54834f60..f83b3e2f24 100644
--- a/crypto/bio/bio.h
+++ b/crypto/bio/bio.h
@@ -719,7 +719,7 @@ int BIO_printf();
#define BIO_R_KEEPALIVE 109
#define BIO_R_NBIO_CONNECT_ERROR 110
#define BIO_R_NO_ACCEPT_PORT_SPECIFIED 111
-#define BIO_R_NO_HOSTHNAME_SPECIFIED 112
+#define BIO_R_NO_HOSTNAME_SPECIFIED 112
#define BIO_R_NO_PORT_DEFINED 113
#define BIO_R_NO_PORT_SPECIFIED 114
#define BIO_R_NULL_PARAMETER 115
@@ -727,7 +727,7 @@ int BIO_printf();
#define BIO_R_UNABLE_TO_BIND_SOCKET 117
#define BIO_R_UNABLE_TO_CREATE_SOCKET 118
#define BIO_R_UNABLE_TO_LISTEN_SOCKET 119
-#define BIO_R_UNINITALISED 120
+#define BIO_R_UNINITIALIZED 120
#define BIO_R_UNSUPPORTED_METHOD 121
#define BIO_R_WSASTARTUP 122
diff --git a/crypto/bio/bio_err.c b/crypto/bio/bio_err.c
index 58a82867a3..8fad0ff730 100644
--- a/crypto/bio/bio_err.c
+++ b/crypto/bio/bio_err.c
@@ -100,7 +100,7 @@ static ERR_STRING_DATA BIO_str_reasons[]=
{BIO_R_KEEPALIVE ,"keepalive"},
{BIO_R_NBIO_CONNECT_ERROR ,"nbio connect error"},
{BIO_R_NO_ACCEPT_PORT_SPECIFIED ,"no accept port specified"},
-{BIO_R_NO_HOSTHNAME_SPECIFIED ,"no hosthname specified"},
+{BIO_R_NO_HOSTNAME_SPECIFIED ,"no hostname specified"},
{BIO_R_NO_PORT_DEFINED ,"no port defined"},
{BIO_R_NO_PORT_SPECIFIED ,"no port specified"},
{BIO_R_NULL_PARAMETER ,"null parameter"},
@@ -108,7 +108,7 @@ static ERR_STRING_DATA BIO_str_reasons[]=
{BIO_R_UNABLE_TO_BIND_SOCKET ,"unable to bind socket"},
{BIO_R_UNABLE_TO_CREATE_SOCKET ,"unable to create socket"},
{BIO_R_UNABLE_TO_LISTEN_SOCKET ,"unable to listen socket"},
-{BIO_R_UNINITALISED ,"uninitalised"},
+{BIO_R_UNINITIALIZED ,"uninitialized"},
{BIO_R_UNSUPPORTED_METHOD ,"unsupported method"},
{BIO_R_WSASTARTUP ,"wsastartup"},
{0,NULL},
diff --git a/crypto/bio/bio_lib.c b/crypto/bio/bio_lib.c
index 0b3b10d287..fc18409e1d 100644
--- a/crypto/bio/bio_lib.c
+++ b/crypto/bio/bio_lib.c
@@ -162,7 +162,7 @@ int outl;
if (!b->init)
{
- BIOerr(BIO_F_BIO_READ,BIO_R_UNINITALISED);
+ BIOerr(BIO_F_BIO_READ,BIO_R_UNINITIALIZED);
return(-2);
}
@@ -200,7 +200,7 @@ int inl;
if (!b->init)
{
- BIOerr(BIO_F_BIO_WRITE,BIO_R_UNINITALISED);
+ BIOerr(BIO_F_BIO_WRITE,BIO_R_UNINITIALIZED);
return(-2);
}
@@ -241,7 +241,7 @@ const char *in;
if (!b->init)
{
- BIOerr(BIO_F_BIO_PUTS,BIO_R_UNINITALISED);
+ BIOerr(BIO_F_BIO_PUTS,BIO_R_UNINITIALIZED);
return(-2);
}
@@ -275,7 +275,7 @@ int inl;
if (!b->init)
{
- BIOerr(BIO_F_BIO_GETS,BIO_R_UNINITALISED);
+ BIOerr(BIO_F_BIO_GETS,BIO_R_UNINITIALIZED);
return(-2);
}
diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c
index 95c4bbbc03..9c84057e1b 100644
--- a/crypto/bio/bss_conn.c
+++ b/crypto/bio/bss_conn.c
@@ -159,7 +159,7 @@ BIO_CONNECT *c;
p=c->param_hostname;
if (p == NULL)
{
- BIOerr(BIO_F_CONN_STATE,BIO_R_NO_HOSTHNAME_SPECIFIED);
+ BIOerr(BIO_F_CONN_STATE,BIO_R_NO_HOSTNAME_SPECIFIED);
goto exit_loop;
}
for ( ; *p != '\0'; p++)