From: Syrone Wong Date: Tue, 13 Jul 2021 02:04:56 +0000 (+0800) Subject: Fix OSSL_TRACE9 missing arg9 X-Git-Tag: openssl-3.0.0-beta2~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4e0383d8519373372c899380842adad7ef887e16;p=thirdparty%2Fopenssl.git Fix OSSL_TRACE9 missing arg9 Signed-off-by: Syrone Wong CLA: trivial Reviewed-by: Tim Hudson Reviewed-by: Matthias St. Pierre Reviewed-by: Richard Levitte Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/16060) --- diff --git a/include/openssl/trace.h b/include/openssl/trace.h index b3a29ea8c4e..28200133673 100644 --- a/include/openssl/trace.h +++ b/include/openssl/trace.h @@ -302,7 +302,7 @@ void OSSL_trace_end(int category, BIO *channel); OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7)) # define OSSL_TRACE8(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)) -# define OSSL_TRACE9(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ +# define OSSL_TRACE9(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \ OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)) # ifdef __cplusplus