From: Beat Bolli Date: Fri, 18 Nov 2016 23:10:05 +0000 (+0100) Subject: doc/man3: use the documented coding style in the example code X-Git-Tag: OpenSSL_1_1_1-pre1~1338 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7aefa75490991d71e190be38457223704fefff34;p=oweals%2Fopenssl.git 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) --- 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");