add basic references to the new methods in documentation
[openssl.git] / doc / man3 / SSL_load_client_CA_file.pod
index 782329b51dd42289e761ee708348470ca9bb625d..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