From 1339287b13bb46d0a4f53e6a89b21829fae0a272 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Thu, 20 Jan 2022 14:54:27 -0500 Subject: [PATCH] Build fix --- indra/llcorehttp/tests/test_httprequest.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/indra/llcorehttp/tests/test_httprequest.hpp b/indra/llcorehttp/tests/test_httprequest.hpp index 1179661e828..2add62ab4df 100644 --- a/indra/llcorehttp/tests/test_httprequest.hpp +++ b/indra/llcorehttp/tests/test_httprequest.hpp @@ -2334,7 +2334,7 @@ void HttpRequestTestObjectType::test<20>() headers = HttpHeaders::ptr_t(new HttpHeaders()); headers->append("Keep-Alive", "120"); headers->append("Accept", "text/html"); - headers->append(HTTP_OUT_HEADER_CONTENT_TYPE "application/llsd+xml"); + headers->append("Content-Type", "application/llsd+xml"); headers->append("Cache-Control", "no-store"); // And a buffer array @@ -2532,9 +2532,9 @@ void HttpRequestTestObjectType::test<21>() // headers headers = HttpHeaders::ptr_t(new HttpHeaders); - headers->append(HTTP_OUT_HEADER_CONTENT_TYPE, "text/plain"); - headers->append(HTTP_OUT_HEADER_CONTENT_TYPE, "text/html"); - headers->append(HTTP_OUT_HEADER_CONTENT_TYPE, "application/llsd+xml"); + headers->append("Content-Type", "text/plain"); + headers->append("Content-Type", "text/html"); + headers->append("Content-Type", "application/llsd+xml"); // And a buffer array const char * msg("<xml><llsd><string>It was the best of times, it was the worst of times.</string></llsd></xml>"); -- GitLab