Skip to content

Commit 3c8d990

Browse files
committed
Merge pull request #48 from veox/bugfix-endpoint-string
Protocol scheme used :\\ instead of ://.
2 parents d2428ec + a914284 commit 3c8d990

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)