diff options
author | tb <> | 2021-11-18 18:05:27 +0000 |
---|---|---|
committer | tb <> | 2021-11-18 18:05:27 +0000 |
commit | 58175e21c12af8434a78b20b0082eb53e658dfb9 (patch) | |
tree | 6a2f74f26e527bf8f72a40d34b5d1be666940f62 /src | |
parent | 5a1bf990a6a4264d50d099f41362726e8778b1dc (diff) | |
download | openbsd-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')
-rw-r--r-- | src/lib/libcrypto/evp/pmeth_gn.c | 4 |
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) | |||
187 | void | 187 | void |
188 | evp_pkey_set_cb_translate(BN_GENCB *cb, EVP_PKEY_CTX *ctx) | 188 | evp_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 | ||
193 | int | 193 | int |