There's a POD error in the manpage, resulting in quite misleading documentation.

--
Florian Weimer / Red Hat Product Security Team
commit cb06d593d1a59c932614c4e97055b441fc66c4ec
Author: Florian Weimer <fwei...@redhat.com>
Date:   Tue Nov 13 14:22:44 2012 +0100

    Fix POD usage in SSL_connect.pod
    
    Current perlpod needs some escaping, otherwise it will render a
    numbered list, resulting totally misleading return values.

diff --git a/doc/ssl/SSL_connect.pod b/doc/ssl/SSL_connect.pod
index cc56ebb..aa0f802 100644
--- a/doc/ssl/SSL_connect.pod
+++ b/doc/ssl/SSL_connect.pod
@@ -41,18 +41,18 @@ The following return values can occur:
 
 =over 4
 
-=item 1
+=item C<1>
 
 The TLS/SSL handshake was successfully completed, a TLS/SSL connection has been
 established.
 
-=item 0
+=item C<0>
 
 The TLS/SSL handshake was not successful but was shut down controlled and
 by the specifications of the TLS/SSL protocol. Call SSL_get_error() with the
 return value B<ret> to find out the reason.
 
-=item E<lt>0
+=item E<lt>C<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

Reply via email to