From 21ebd2fc3fc00d7871ad00f52daffde4039da665 Mon Sep 17 00:00:00 2001 From: Paul Yang Date: Fri, 24 Aug 2018 20:38:04 +0800 Subject: [PATCH] Add semicolon at the end of the function prototypes Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/7041) --- doc/man3/EVP_sm3.pod | 4 ++-- doc/man3/EVP_sm4_cbc.pod | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/man3/EVP_sm3.pod b/doc/man3/EVP_sm3.pod index a68fe667f3..50ec429c77 100644 --- a/doc/man3/EVP_sm3.pod +++ b/doc/man3/EVP_sm3.pod @@ -9,7 +9,7 @@ EVP_sm3 #include - const EVP_MD *EVP_sm3(void) + const EVP_MD *EVP_sm3(void); =head1 DESCRIPTION @@ -42,7 +42,7 @@ L =head1 COPYRIGHT -Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved. Copyright 2017 Ribose Inc. All Rights Reserved. Licensed under the OpenSSL license (the "License"). You may not use diff --git a/doc/man3/EVP_sm4_cbc.pod b/doc/man3/EVP_sm4_cbc.pod index 38abfada31..4e02409198 100644 --- a/doc/man3/EVP_sm4_cbc.pod +++ b/doc/man3/EVP_sm4_cbc.pod @@ -13,11 +13,11 @@ EVP_sm4_ctr #include - const EVP_CIPHER *EVP_sm4_cbc(void) - const EVP_CIPHER *EVP_sm4_ecb(void) - const EVP_CIPHER *EVP_sm4_cfb(void) - const EVP_CIPHER *EVP_sm4_ofb(void) - const EVP_CIPHER *EVP_sm4_ctr(void) + const EVP_CIPHER *EVP_sm4_cbc(void); + const EVP_CIPHER *EVP_sm4_ecb(void); + const EVP_CIPHER *EVP_sm4_cfb(void); + const EVP_CIPHER *EVP_sm4_ofb(void); + const EVP_CIPHER *EVP_sm4_ctr(void); =head1 DESCRIPTION @@ -52,7 +52,7 @@ L =head1 COPYRIGHT -Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved. Copyright 2017 Ribose Inc. All Rights Reserved. Licensed under the OpenSSL license (the "License"). You may not use -- GitLab