From: Tomas Mraz Date: Wed, 21 Apr 2021 06:11:04 +0000 (+0200) Subject: http/http_lib.c: Include stdio.h for sscanf() X-Git-Tag: openssl-3.0.0-alpha16~157 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf6aeeb481f97e2b7088f151546b9957eaaf44ef;p=thirdparty%2Fopenssl.git http/http_lib.c: Include stdio.h for sscanf() Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14953) --- diff --git a/crypto/http/http_lib.c b/crypto/http/http_lib.c index f0fc770f22d..a8697cca33c 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 /* for sscanf() */ +#include #include #include #include /* for BIO_snprintf() */ #include -#include #include "internal/cryptlib.h" /* for ossl_assert() */ #include "http_local.h"