The branch master has been updated
via 4e0383d8519373372c899380842adad7ef887e16 (commit)
from 53111a88ce5081f44a1775ddb11765491f115f50 (commit)
- Log -----------------------------------------------------------------
commit 4e0383d8519373372c899380842adad7ef887e16
Author: Syrone Wong <[email protected]>
Date: Tue Jul 13 10:04:56 2021 +0800
Fix OSSL_TRACE9 missing arg9
Signed-off-by: Syrone Wong <[email protected]>
CLA: trivial
Reviewed-by: Tim Hudson <[email protected]>
Reviewed-by: Matthias St. Pierre <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/16060)
-----------------------------------------------------------------------
Summary of changes:
include/openssl/trace.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/openssl/trace.h b/include/openssl/trace.h
index b3a29ea8c4..2820013367 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