|What is the SECLEVEL you refer to?  I had a quick look at SSL_CONF API
 |pointed out by Stephen.[.]

 |

I did too.  Attached a doc patch (against 1.0.2) to match code
reality.  Fixes linking for me.

--steffen
diff --git a/doc/ssl/SSL_CONF_cmd.pod b/doc/ssl/SSL_CONF_cmd.pod
index 6d073cb..67ab043 100644
--- a/doc/ssl/SSL_CONF_cmd.pod
+++ b/doc/ssl/SSL_CONF_cmd.pod
@@ -10,7 +10,7 @@ SSL_CONF_cmd - send configuration command
 
  int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value);
  int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);
- int SSL_CONF_finish(SSL_CONF_CTX *cctx);
+ int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx);
 
 =head1 DESCRIPTION
 
@@ -21,7 +21,7 @@ framework for command line options or configuration files.
 
 SSL_CONF_cmd_value_type() returns the type of value that B<cmd> refers to.
 
-The function SSL_CONF_finish() must be called after all configuration
+The function SSL_CONF_CTX_finish() must be called after all configuration
 operations have been completed. It is used to finalise any operations
 or to process defaults.
 
@@ -416,7 +416,7 @@ error occurred attempting to perform the operation: for example due to an
 error in the syntax of B<value> in this case the error queue may provide
 additional information.
 
-SSL_CONF_finish() returns 1 for success and 0 for failure.
+SSL_CONF_CTX_finish() returns 1 for success and 0 for failure.
 
 =head1 SEE ALSO
 

Reply via email to