diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2021-12-18 16:48:31 +0100 |
---|---|---|
committer | Dr. David von Oheimb <dev@ddvo.net> | 2021-12-21 12:18:04 +0100 |
commit | a497a90213b50c499f2a385e63e1fa6e13ef283a (patch) | |
tree | 04c4c7c55993885c3e6dd01f2afa143702c4a280 /test/http_test.c | |
parent | add OSSL_STACK_OF_X509_free() for commonly used pattern (diff) | |
download | openssl-a497a90213b50c499f2a385e63e1fa6e13ef283a.tar.xz openssl-a497a90213b50c499f2a385e63e1fa6e13ef283a.zip |
http_test.c: Simplify constant init of 'server_args' struct for gcc-4.8.x
Reviewed-by: Ben Kaduk <kaduk@mit.edu>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17308)
Diffstat (limited to 'test/http_test.c')
-rw-r--r-- | test/http_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/http_test.c b/test/http_test.c index d684c5eb18..49e770cd88 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); |