summaryrefslogtreecommitdiffstats
path: root/doc/ssl/OPENSSL_init_ssl.pod
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ssl/OPENSSL_init_ssl.pod')
-rw-r--r--doc/ssl/OPENSSL_init_ssl.pod6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/ssl/OPENSSL_init_ssl.pod b/doc/ssl/OPENSSL_init_ssl.pod
index d9246a53c1..113e93f94e 100644
--- a/doc/ssl/OPENSSL_init_ssl.pod
+++ b/doc/ssl/OPENSSL_init_ssl.pod
@@ -8,7 +8,7 @@ OPENSSL_init_ssl - OpenSSL (libssl and libcrypto) initialisation
#include <openssl/ssl.h>
- void OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);
+ int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);
=head1 DESCRIPTION
@@ -63,6 +63,10 @@ these settings will also be passed internally to a call to
L<OPENSSL_init_crypto(3)>, so this parameter can also be used to
provide libcrypto settings values.
+=head1 RETURN VALUES
+
+The function OPENSSL_init_ssl() returns 1 on success or 0 on error.
+
=head1 SEE ALSO
L<OPENSSL_init_crypto(3)>