summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2021-11-18 18:05:27 +0000
committertb <>2021-11-18 18:05:27 +0000
commit58175e21c12af8434a78b20b0082eb53e658dfb9 (patch)
tree6a2f74f26e527bf8f72a40d34b5d1be666940f62 /src/lib
parent5a1bf990a6a4264d50d099f41362726e8778b1dc (diff)
downloadopenbsd-58175e21c12af8434a78b20b0082eb53e658dfb9.tar.gz
openbsd-58175e21c12af8434a78b20b0082eb53e658dfb9.tar.bz2
openbsd-58175e21c12af8434a78b20b0082eb53e658dfb9.zip
Add semicolon that will become non-optional once BN_GENCB_set() will
move from an awful macro to a proper function.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/evp/pmeth_gn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/pmeth_gn.c b/src/lib/libcrypto/evp/pmeth_gn.c
index d1cbdc409f..7f5311aff9 100644
--- a/src/lib/libcrypto/evp/pmeth_gn.c
+++ b/src/lib/libcrypto/evp/pmeth_gn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: pmeth_gn.c,v 1.6 2017/01/29 17:49:23 beck Exp $ */ 1/* $OpenBSD: pmeth_gn.c,v 1.7 2021/11/18 18:05:27 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2006. 3 * project 2006.
4 */ 4 */
@@ -187,7 +187,7 @@ trans_cb(int a, int b, BN_GENCB *gcb)
187void 187void
188evp_pkey_set_cb_translate(BN_GENCB *cb, EVP_PKEY_CTX *ctx) 188evp_pkey_set_cb_translate(BN_GENCB *cb, EVP_PKEY_CTX *ctx)
189{ 189{
190 BN_GENCB_set(cb, trans_cb, ctx) 190 BN_GENCB_set(cb, trans_cb, ctx);
191} 191}
192 192
193int 193int