Hi,

Without proposing a complete "british english to american english"
change, I still suggest that the typo in the following BIO modules be
fixed (from BIO_R_UNINITALISED to BIO_R_UNINITIALISED -- note
the 'I' after the 'T'). In order to not break backward compatibility,
the #define BIO_R_UNINITALISED is being duplicated to
BIO_R_UNINITIALISED.

    Martin
-- 
<[EMAIL PROTECTED]>      |        Siemens Information and
Phone: +49-89-636-46021               |        Communication  Products
FAX:   +49-89-636-47816               |        81730  Munich,  Germany
Index: crypto/bio/bio.h
===================================================================
RCS file: /home/cvs/OpenSSL.Org/crypto/bio/bio.h,v
retrieving revision 1.6
diff -u -r1.6 bio.h
--- bio.h       1999/03/09 03:01:44     1.6
+++ bio.h       1999/04/14 07:54:04
@@ -721,6 +721,7 @@
 #define BIO_R_UNABLE_TO_CREATE_SOCKET                   118
 #define BIO_R_UNABLE_TO_LISTEN_SOCKET                   119
 #define BIO_R_UNINITALISED                              120
+#define BIO_R_UNINITIALISED                             120
 #define BIO_R_UNSUPPORTED_METHOD                        121
 #define BIO_R_WSASTARTUP                                122
  
Index: crypto/bio/bio_err.c
===================================================================
RCS file: /home/cvs/OpenSSL.Org/crypto/bio/bio_err.c,v
retrieving revision 1.2
diff -u -r1.2 bio_err.c
--- bio_err.c   1998/12/22 15:04:29     1.2
+++ bio_err.c   1999/04/14 07:54:04
@@ -108,7 +108,7 @@
 {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_UNINITIALISED                     ,"uninitialised"},
 {BIO_R_UNSUPPORTED_METHOD                ,"unsupported method"},
 {BIO_R_WSASTARTUP                        ,"wsastartup"},
 {0,NULL},
Index: crypto/bio/bio_lib.c
===================================================================
RCS file: /home/cvs/OpenSSL.Org/crypto/bio/bio_lib.c,v
retrieving revision 1.1.1.3
diff -u -r1.1.1.3 bio_lib.c
--- bio_lib.c   1998/12/21 10:58:53     1.1.1.3
+++ bio_lib.c   1999/04/14 07:54:04
@@ -162,7 +162,7 @@
 
        if (!b->init)
                {
-               BIOerr(BIO_F_BIO_READ,BIO_R_UNINITALISED);
+               BIOerr(BIO_F_BIO_READ,BIO_R_UNINITIALISED);
                return(-2);
                }
 
@@ -200,7 +200,7 @@
 
        if (!b->init)
                {
-               BIOerr(BIO_F_BIO_WRITE,BIO_R_UNINITALISED);
+               BIOerr(BIO_F_BIO_WRITE,BIO_R_UNINITIALISED);
                return(-2);
                }
 
@@ -241,7 +241,7 @@
 
        if (!b->init)
                {
-               BIOerr(BIO_F_BIO_PUTS,BIO_R_UNINITALISED);
+               BIOerr(BIO_F_BIO_PUTS,BIO_R_UNINITIALISED);
                return(-2);
                }
 
@@ -275,7 +275,7 @@
 
        if (!b->init)
                {
-               BIOerr(BIO_F_BIO_GETS,BIO_R_UNINITALISED);
+               BIOerr(BIO_F_BIO_GETS,BIO_R_UNINITIALISED);
                return(-2);
                }
 

Reply via email to