summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-01-02 19:54:44 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-01-02 19:54:44 +0000
commit504773ae129013f0a17ac4db842b514ff3920b06 (patch)
tree649bb8f372f0c0dd82b4d81cc22faec2aab003b6
parent9dbc9fc094002909ee1a935cf625d72d294259c2 (diff)
sm4: more NULL misspellings
-rw-r--r--lib/libcrypto/evp/e_sm4.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/evp/e_sm4.c b/lib/libcrypto/evp/e_sm4.c
index 9de2080b274..9db45a87f66 100644
--- a/lib/libcrypto/evp/e_sm4.c
+++ b/lib/libcrypto/evp/e_sm4.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: e_sm4.c,v 1.10 2023/12/02 19:07:10 tb Exp $ */
+/* $OpenBSD: e_sm4.c,v 1.11 2024/01/02 19:54:43 tb Exp $ */
/*
* Copyright (c) 2017, 2019 Ribose Inc
*
@@ -220,9 +220,9 @@ static const EVP_CIPHER sm4_ecb = {
.do_cipher = sm4_ecb_cipher,
.cleanup = NULL,
.ctx_size = sizeof(EVP_SM4_KEY),
- .set_asn1_parameters = 0,
- .get_asn1_parameters = 0,
- .ctrl = 0,
+ .set_asn1_parameters = NULL,
+ .get_asn1_parameters = NULL,
+ .ctrl = NULL,
.app_data = NULL,
};