]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
EVP: One stray comma removed in crypto/evp/ctrl_params_translate.c
authorRichard Levitte <levitte@openssl.org>
Mon, 29 Mar 2021 16:55:01 +0000 (18:55 +0200)
committerPauli <pauli@openssl.org>
Wed, 31 Mar 2021 03:28:46 +0000 (13:28 +1000)
Commas at the end of a list of items isn't allowed by ANSI C.

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14729)

crypto/evp/ctrl_params_translate.c

index c13a40a95fb540a4172cf829e6c276a50f526588..995e37a4e8c93b7a1bbb426351ff380e3f3a0049 100644 (file)
@@ -149,7 +149,7 @@ enum state {
     PKEY,
     PRE_CTRL_TO_PARAMS, POST_CTRL_TO_PARAMS, CLEANUP_CTRL_TO_PARAMS,
     PRE_CTRL_STR_TO_PARAMS, POST_CTRL_STR_TO_PARAMS, CLEANUP_CTRL_STR_TO_PARAMS,
-    PRE_PARAMS_TO_CTRL, POST_PARAMS_TO_CTRL, CLEANUP_PARAMS_TO_CTRL,
+    PRE_PARAMS_TO_CTRL, POST_PARAMS_TO_CTRL, CLEANUP_PARAMS_TO_CTRL
 };
 enum action {
     NONE = 0, GET = 1, SET = 2