doc/man3: use the documented coding style in the example code
[openssl.git] / doc / man3 / SSL_CTX_set_default_passwd_cb.pod
index 82d322b95167267d01d0f09cc031f361ac34b1f8..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