Document the raw key getter functions
[openssl.git] / doc / man3 / SSL_CTX_set_default_passwd_cb.pod
index 219690614166ceee6e350093a132a913255846ac..c7bdc9b92a046afafefc8ea4664559d5d45e362d 100644 (file)
@@ -85,9 +85,9 @@ truncated.
 
  int my_cb(char *buf, int size, int rwflag, void *u)
  {
-      strncpy(buf, (char *)u, size);
-      buf[size - 1] = '\0';
-      return strlen(buf);
+     strncpy(buf, (char *)u, size);
+     buf[size - 1] = '\0';
+     return strlen(buf);
  }
 
 =head1 HISTORY
@@ -98,7 +98,7 @@ first added to OpenSSL 1.1.0
 
 =head1 SEE ALSO
 
-L<ssl(3)>,
+L<ssl(7)>,
 L<SSL_CTX_use_certificate(3)>
 
 =head1 COPYRIGHT