[openssl] master update

tomas at openssl.org tomas at openssl.org
Thu Apr 22 15:45:23 UTC 2021


The branch master has been updated
       via  bf6aeeb481f97e2b7088f151546b9957eaaf44ef (commit)
      from  b5644c2a09d6fd1f44321d2e16bea43729d73114 (commit)


- Log -----------------------------------------------------------------
commit bf6aeeb481f97e2b7088f151546b9957eaaf44ef
Author: Tomas Mraz <tomas at openssl.org>
Date:   Wed Apr 21 08:11:04 2021 +0200

    http/http_lib.c: Include stdio.h for sscanf()
    
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/14953)

-----------------------------------------------------------------------

Summary of changes:
 crypto/http/http_lib.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/crypto/http/http_lib.c b/crypto/http/http_lib.c
index f0fc770f22..a8697cca33 100644
--- a/crypto/http/http_lib.c
+++ b/crypto/http/http_lib.c
@@ -7,11 +7,12 @@
  * https://www.openssl.org/source/license.html
  */
 
+#include <stdio.h>       /* for sscanf() */
+#include <string.h>
 #include <openssl/http.h>
 #include <openssl/httperr.h>
 #include <openssl/bio.h> /* for BIO_snprintf() */
 #include <openssl/err.h>
-#include <string.h>
 #include "internal/cryptlib.h" /* for ossl_assert() */
 
 #include "http_local.h"


More information about the openssl-commits mailing list