add basic references to the new methods in documentation
[openssl.git] / doc / man3 / SSL_load_client_CA_file.pod
index cc6a19cdea9043276503a3380aba007c7d62b58f..412b1a098ca4c0c52fffef7035e419a4448dd892 100644 (file)
@@ -33,9 +33,9 @@ Load names of CAs from file and use it as a client CA list:
  ...
  cert_names = SSL_load_client_CA_file("/path/to/CAfile.pem");
  if (cert_names != NULL)
-   SSL_CTX_set_client_CA_list(ctx, cert_names);
+     SSL_CTX_set_client_CA_list(ctx, cert_names);
  else
-   error_handling();
+     /* error */
  ...
 
 =head1 RETURN VALUES
@@ -56,7 +56,7 @@ Pointer to the subject names of the successfully read certificates.
 
 =head1 SEE ALSO
 
-L<ssl(3)>,
+L<ssl(7)>,
 L<SSL_CTX_set_client_CA_list(3)>
 
 =head1 COPYRIGHT