summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bio_lib.c
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/bio_lib.c
parent46e8ddaf642be328eff89fb57a4229742508e81f (diff)
Fix typos in error codes.
Diffstat (limited to 'crypto/bio/bio_lib.c')
-rw-r--r--crypto/bio/bio_lib.c8
1 files changed, 4 insertions, 4 deletions
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);
}