summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-05-11 15:45:22 +0200
committerDr. David von Oheimb <dev@ddvo.net>2021-05-14 19:24:42 +0200
commit647a5dbf10227d65919b49d078da4eaca313f921 (patch)
tree308c8dfb9fbc850077796579e14b9476b6966b88 /test
parente2c38c1a4e034f3fac817870902db6d8bc117119 (diff)
Add OSSL_ prefix to HTTP_DEFAULT_MAX_{LINE_LENGTH,RESP_LEN}
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15053)
Diffstat (limited to 'test')
-rw-r--r--test/http_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/http_test.c b/test/http_test.c
index 907650453d..b9f7452744 100644
--- a/test/http_test.c
+++ b/test/http_test.c
@@ -133,13 +133,13 @@ static int test_http_x509(int do_get)
wbio, rbio, NULL /* bio_update_fn */, NULL /* arg */,
0 /* buf_size */, headers, content_type,
1 /* expect_asn1 */,
- HTTP_DEFAULT_MAX_RESP_LEN, 0 /* timeout */)
+ OSSL_HTTP_DEFAULT_MAX_RESP_LEN, 0 /* timeout */)
: OSSL_HTTP_transfer(NULL, NULL /* host */, NULL /* port */, RPATH,
0 /* use_ssl */,NULL /* proxy */, NULL /* no_pr */,
wbio, rbio, NULL /* bio_fn */, NULL /* arg */,
0 /* buf_size */, headers, content_type,
req, content_type, 1 /* expect_asn1 */,
- HTTP_DEFAULT_MAX_RESP_LEN, 0 /* timeout */,
+ OSSL_HTTP_DEFAULT_MAX_RESP_LEN, 0 /* timeout */,
0 /* keep_alive */);
rcert = d2i_X509_bio(rsp, NULL);
BIO_free(rsp);