[openssl] master update

Dr. Paul Dale pauli at openssl.org
Wed Jul 14 04:57:30 UTC 2021


The branch master has been updated
       via  4e0383d8519373372c899380842adad7ef887e16 (commit)
      from  53111a88ce5081f44a1775ddb11765491f115f50 (commit)


- Log -----------------------------------------------------------------
commit 4e0383d8519373372c899380842adad7ef887e16
Author: Syrone Wong <wong.syrone at gmail.com>
Date:   Tue Jul 13 10:04:56 2021 +0800

    Fix OSSL_TRACE9 missing arg9
    
    Signed-off-by: Syrone Wong <wong.syrone at gmail.com>
    
    CLA: trivial
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (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


More information about the openssl-commits mailing list