Skip to content

Commit 545c25d

Browse files
committed
Fix build break in http_client_asio.cpp after the merge.
1 parent 12df6f3 commit 545c25d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/src/http/client/http_client_asio.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ class asio_context : public request_context, public std::enable_shared_from_this
617617
}
618618

619619
// Add the Host header if user has not specified it explicitly
620-
if (!m_request.headers().has(header_names::host))
620+
if (!ctx->m_request.headers().has(header_names::host))
621621
{
622622
request_stream << "Host: " << host << ":" << port << CRLF;
623623
}

0 commit comments

Comments
 (0)