aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-10-04 13:51:21 -0400
committerJack Lloyd <[email protected]>2020-10-04 13:51:21 -0400
commit26a30e05a32be6e3a27a3d35f5712c8d9b33515e (patch)
tree548f10574cddecb0a08eb0841b897b6cd1eddeb4
parent45133ccc344ded464d6554fd4890e8addcb0b609 (diff)
Fix Clang warning
-rw-r--r--src/lib/utils/http_util/http_util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/http_util/http_util.cpp b/src/lib/utils/http_util/http_util.cpp
index e18303866..342fe2e84 100644
--- a/src/lib/utils/http_util/http_util.cpp
+++ b/src/lib/utils/http_util/http_util.cpp
@@ -135,7 +135,7 @@ Response http_sync(http_exch_fn http_transact,
if(port_sep == std::string::npos)
{
service = "http";
- hostname = hostname;
+ // hostname not modified
}
else
{