Skip to content

Commit a914284

Browse files
committed
Protocol scheme used :\\ instead of ://.
1 parent d2428ec commit a914284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/endpoint.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ std::istream& operator>>(std::istream& input, endpoint_type& argument)
118118
std::ostream& operator<<(std::ostream& output, const endpoint_type& argument)
119119
{
120120
if (!argument.scheme_.empty())
121-
output << argument.scheme_ << ":\\";
121+
output << argument.scheme_ << "://";
122122

123123
output << argument.host_;
124124

0 commit comments

Comments
 (0)