Typo.
[openssl.git] / STATUS
diff --git a/STATUS b/STATUS
index b1a8a2ec1f6cc10539930b13f357d35b9c416a25..245f5ed3afbe3c2666395900e6ca66ee8652fa73 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,6 +1,6 @@
 
   OpenSSL STATUS                           Last modified at
-  ______________                           $Date: 1999/04/21 17:30:41 $
+  ______________                           $Date: 1999/04/27 12:01:53 $
 
   DEVELOPMENT STATE
 
     o  OpenSSL 0.9.2b: Released on March    22th, 1999
     o  OpenSSL 0.9.1c: Released on December 23th, 1998
 
+     [ Proposed new numbering scheme: <major>.<minor>[<patchlevel>]
+       0.9.1c is   0913
+       1.0    is 010000
+       1.0  a is 010001
+       1.8  z is 01081a ]
+
   RELEASE SHOWSTOPPERS
 
     o Compilation warnings: ctype-related int vs. char
-    o Compilation error: "unsigned long*" and "int*" under AIX
     o BSD/OS: assembler functions must not have leading underscores
-       o exptest and rsa_oaep_test fail with irix64-*
+    o exptest and rsa_oaep_test fail with irix64-*
       (Don Badrak <dbadrak@geo.census.gov>: "Re: Problems to compile openssl
          on IRIX 6.2", openssl-users)
     o BN_add test fails on Caldera OpenLinux 1.3
       (Marc Christensen <Marc.Christensen@m.cc.utah.edu>
          "Compiles but fails big number test?", openssl-users)
-    o make test fails on AIX
-         (jvant@bsumail.idbsu.edu on openssl-users)
  
   AVAILABLE PATCHES
 
 
     o Properly initialize the PRNG in the absence of /dev/random.
 
-    o > NO_RSA (ejs@bfd.com)
-      > ./Configure -DNO_IDEA -DNO_RC5 -DNO_RC4 -DNO_RC2 -DNO_RSA -DNO_ERR linux-elf
-      > I tried for a whole day to do this and could not get it to work.  Linux
-      > machine, kernel 2.0.36 and 2.2.1, redhat 5.2 latest, gcc and egcs , no
-      > go.  I also noticed the even with -DNO_IDEA, _DNO_RC2, etc. the make
-      > still goes into those subdirectories and 'makes'.
-
-    o The "exported" header files should not use #include "foo.h", but
-      #include <foo.h> or even better #include <ssl/foo.h> or
-      #include <openssl/foo.h> in order to avoid filename clashes.
-
     o ERR_error_string(..., buf) does not know how large buf is,
       there should be ERR_error_string_n(..., buf, bufsize)
       or similar.