connect.c: ignore extra colon after hostname
commit6b6c5f7a2f66751a93afce54277a1f30ab0dc521
authorTorsten Bögershausen <tboegi@web.de>
Tue, 7 Apr 2015 20:03:25 +0000 (7 22:03 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 9 Apr 2015 04:00:53 +0000 (8 21:00 -0700)
tree3bf6a8b079e1853105d4eec87126756c57fd3273
parent3f55ccab8e0fec73c8e38b909e9bb4963bfb8f6a
connect.c: ignore extra colon after hostname

Ignore an extra ':' at the end of the hostname in URL's like
"ssh://example.com:/path/to/repo"

The colon is meant to separate a port number from the hostname.
If the port is empty, the colon should be ignored, see RFC 3986.

It had been working for URLs with ssh:// scheme, but was unintentionally
broken in 86ceb3, "allow ssh://user@[2001:db8::1]/repo.git"

Reported-by: Reid Woodbury Jr. <reidw@rawsound.com>
Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
connect.c
t/t5500-fetch-pack.sh
t/t5601-clone.sh