doc/man3: use the documented coding style in the example code
authorBeat Bolli <dev@drbeat.li>
Fri, 18 Nov 2016 23:10:05 +0000 (00:10 +0100)
committerRich Salz <rsalz@openssl.org>
Sun, 11 Jun 2017 20:28:11 +0000 (16:28 -0400)
Adjust brace placement, whitespace after keywords, indentation and empty
lines after variable declarations according to
https://www.openssl.org/policies/codingstyle.html.

Indent literal sections by exactly one space.

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3580)

doc/man3/ASN1_TIME_set.pod
doc/man3/SSL_CTX_set_tmp_dh_callback.pod

index b9c0dcd22ebd44dbe9f245c538ff7fe4faf82bda..95bc06dc383840155e53a62de308529fa69fd089 100644 (file)
@@ -109,6 +109,7 @@ Determine if one time is later or sooner than the current time:
 
  if (!ASN1_TIME_diff(&day, &sec, NULL, to))
      /* Invalid time format */
+
  if (day > 0 || sec > 0)
      printf("Later\n");
  else if (day < 0 || sec < 0)
index 76c61f874343d8c313dfa93d663ea9f0a7dcc37a..a2ac1c0adbbc5a31d799cbb4e9173e358c0ec071 100644 (file)
@@ -93,6 +93,7 @@ Command-line parameter generation:
 Code for setting up parameters during server initialization:
 
  SSL_CTX ctx = SSL_CTX_new();
+
  DH *dh_2048 = NULL;
  FILE *paramfile = fopen("dh_param_2048.pem", "r");