Skip to content

Commit

Permalink
fix: hurl dump with port (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjunk1989 authored Nov 6, 2024
1 parent 0cfc3c1 commit 92d5465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpputil/hurl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const std::string& HUrl::dump() {
if (port != 80 && port != 443) {
char buf[16] = {0};
snprintf(buf, sizeof(buf), ":%d", port);
url += port;
url += buf;
}
}
// /path
Expand Down

0 comments on commit 92d5465

Please sign in to comment.