Hi!

Two corrections:
- c_rehash needs a directory as argument
- Unlike all other items the BIO-layer can return "-2". Hence the correct
  classification of error return values is "<0" instead of "-1".

Best regards,
        Lutz
-- 
Lutz Jaenicke                             [EMAIL PROTECTED]
BTU Cottbus               http://www.aet.TU-Cottbus.DE/personen/jaenicke/
Lehrstuhl Allgemeine Elektrotechnik                  Tel. +49 355 69-4129
Universitaetsplatz 3-4, D-03044 Cottbus              Fax. +49 355 69-4153
diff -r -u --new-file 
openssl-SNAP-20001004-vanilla/doc/ssl/SSL_CTX_load_verify_locations.pod 
openssl-SNAP-20001004/doc/ssl/SSL_CTX_load_verify_locations.pod
--- openssl-SNAP-20001004-vanilla/doc/ssl/SSL_CTX_load_verify_locations.pod     Wed 
Oct  4 00:02:27 2000
+++ openssl-SNAP-20001004/doc/ssl/SSL_CTX_load_verify_locations.pod     Thu Oct  5 
+16:37:50 2000
@@ -64,7 +64,7 @@
 for use as B<CApath>:
 
  cd /some/where/certs
- c_rehash
+ c_rehash .
 
 =head1 RETURN VALUES
 
diff -r -u --new-file openssl-SNAP-20001004-vanilla/doc/ssl/SSL_accept.pod 
openssl-SNAP-20001004/doc/ssl/SSL_accept.pod
--- openssl-SNAP-20001004-vanilla/doc/ssl/SSL_accept.pod        Thu Sep 21 09:00:28 
2000
+++ openssl-SNAP-20001004/doc/ssl/SSL_accept.pod        Thu Oct  5 16:47:45 2000
@@ -54,7 +54,7 @@
 by the specifications of the TLS/SSL protocol. Call SSL_get_error() with the
 return value B<ret> to find out the reason.
 
-=item -1
+=item E<lt>0
 
 The TLS/SSL handshake was not successful because a fatal error occurred either
 at the protocol level or a connection failure occurred. The shutdown was
diff -r -u --new-file openssl-SNAP-20001004-vanilla/doc/ssl/SSL_connect.pod 
openssl-SNAP-20001004/doc/ssl/SSL_connect.pod
--- openssl-SNAP-20001004-vanilla/doc/ssl/SSL_connect.pod       Thu Sep 21 09:00:28 
2000
+++ openssl-SNAP-20001004/doc/ssl/SSL_connect.pod       Thu Oct  5 16:48:02 2000
@@ -51,7 +51,7 @@
 by the specifications of the TLS/SSL protocol. Call SSL_get_error() with the
 return value B<ret> to find out the reason.
 
-=item -1
+=item E<lt>0
 
 The TLS/SSL handshake was not successful, because a fatal error occurred either
 at the protocol level or a connection failure occurred. The shutdown was
diff -r -u --new-file openssl-SNAP-20001004-vanilla/doc/ssl/SSL_read.pod 
openssl-SNAP-20001004/doc/ssl/SSL_read.pod
--- openssl-SNAP-20001004-vanilla/doc/ssl/SSL_read.pod  Thu Sep 21 20:00:51 2000
+++ openssl-SNAP-20001004/doc/ssl/SSL_read.pod  Thu Oct  5 16:38:03 2000
@@ -61,7 +61,7 @@
 available. Call SSL_get_error() with the return value B<ret> to find out,
 whether an error occurred.
 
-=item -1
+=item E<lt>0
 
 The read operation was not successful, because either an error occurred
 or action must be taken by the calling process. Call SSL_get_error() with the
diff -r -u --new-file openssl-SNAP-20001004-vanilla/doc/ssl/SSL_write.pod 
openssl-SNAP-20001004/doc/ssl/SSL_write.pod
--- openssl-SNAP-20001004-vanilla/doc/ssl/SSL_write.pod Thu Sep 21 20:00:51 2000
+++ openssl-SNAP-20001004/doc/ssl/SSL_write.pod Thu Oct  5 16:38:14 2000
@@ -60,7 +60,7 @@
 The write operation was not successful. Call SSL_get_error() with the return
 value B<ret> to find out, whether an error occurred.
 
-=item -1
+=item E<lt>0
 
 The read operation was not successful, because either an error occurred
 or action must be taken by the calling process. Call SSL_get_error() with the

Reply via email to