From 7aefa75490991d71e190be38457223704fefff34 Mon Sep 17 00:00:00 2001 From: Beat Bolli Date: Sat, 19 Nov 2016 00:10:05 +0100 Subject: [PATCH] doc/man3: use the documented coding style in the example code 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 Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3580) --- doc/man3/ASN1_TIME_set.pod | 1 + doc/man3/SSL_CTX_set_tmp_dh_callback.pod | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/man3/ASN1_TIME_set.pod b/doc/man3/ASN1_TIME_set.pod index b9c0dcd22e..95bc06dc38 100644 --- a/doc/man3/ASN1_TIME_set.pod +++ b/doc/man3/ASN1_TIME_set.pod @@ -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) diff --git a/doc/man3/SSL_CTX_set_tmp_dh_callback.pod b/doc/man3/SSL_CTX_set_tmp_dh_callback.pod index 76c61f8743..a2ac1c0adb 100644 --- a/doc/man3/SSL_CTX_set_tmp_dh_callback.pod +++ b/doc/man3/SSL_CTX_set_tmp_dh_callback.pod @@ -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"); -- 2.34.1