From: Dr. David von Oheimb Date: Sat, 18 Dec 2021 15:48:31 +0000 (+0100) Subject: http_test.c: Simplify constant init of 'server_args' struct for gcc-4.8.x X-Git-Tag: openssl-3.2.0-alpha1~3174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a497a90213b50c499f2a385e63e1fa6e13ef283a;p=thirdparty%2Fopenssl.git http_test.c: Simplify constant init of 'server_args' struct for gcc-4.8.x Reviewed-by: Ben Kaduk Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17308) --- diff --git a/test/http_test.c b/test/http_test.c index d684c5eb182..49e770cd886 100644 --- a/test/http_test.c +++ b/test/http_test.c @@ -208,13 +208,14 @@ static int test_http_keep_alive(char version, int keep_alive, int kept_alive) BIO *rbio = BIO_new(BIO_s_mem()); BIO *rsp; const char *const content_type = "application/x-x509-ca-cert"; - server_args mock_args = { NULL, content_type, NULL, '0', 0 }; + server_args mock_args = { NULL, NULL, NULL, '0', 0 }; OSSL_HTTP_REQ_CTX *rctx = NULL; int i, res = 0; if (wbio == NULL || rbio == NULL) goto err; mock_args.out = rbio; + mock_args.content_type = content_type; mock_args.version = version; mock_args.keep_alive = kept_alive; BIO_set_callback_ex(wbio, http_bio_cb_ex);