summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-12-30 18:24:09 +0000
committertb <>2023-12-30 18:24:09 +0000
commitca0591c9e08838e41bd5477e7c08ab3ef631e7a7 (patch)
treeffb8df4a4c6412099cd1bdb65892eddf9262334d /src
parent3ea4394a2803d5bf4f4b929e780789162fe9bd6e (diff)
downloadopenbsd-ca0591c9e08838e41bd5477e7c08ab3ef631e7a7.tar.gz
openbsd-ca0591c9e08838e41bd5477e7c08ab3ef631e7a7.tar.bz2
openbsd-ca0591c9e08838e41bd5477e7c08ab3ef631e7a7.zip
Some Australians don't like voids either
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/evp/e_chacha20poly1305.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/evp/e_chacha20poly1305.c b/src/lib/libcrypto/evp/e_chacha20poly1305.c
index 362e68dc99..796824aeeb 100644
--- a/src/lib/libcrypto/evp/e_chacha20poly1305.c
+++ b/src/lib/libcrypto/evp/e_chacha20poly1305.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: e_chacha20poly1305.c,v 1.33 2023/12/15 13:48:59 tb Exp $ */ 1/* $OpenBSD: e_chacha20poly1305.c,v 1.34 2023/12/30 18:24:09 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2022 Joel Sing <jsing@openbsd.org>
@@ -345,7 +345,7 @@ static const EVP_AEAD aead_chacha20_poly1305 = {
345}; 345};
346 346
347const EVP_AEAD * 347const EVP_AEAD *
348EVP_aead_chacha20_poly1305() 348EVP_aead_chacha20_poly1305(void)
349{ 349{
350 return &aead_chacha20_poly1305; 350 return &aead_chacha20_poly1305;
351} 351}
@@ -363,7 +363,7 @@ static const EVP_AEAD aead_xchacha20_poly1305 = {
363}; 363};
364 364
365const EVP_AEAD * 365const EVP_AEAD *
366EVP_aead_xchacha20_poly1305() 366EVP_aead_xchacha20_poly1305(void)
367{ 367{
368 return &aead_xchacha20_poly1305; 368 return &aead_xchacha20_poly1305;
369} 369}