projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ba8844
)
Fix git protocol connection 'port' override
author
Linus Torvalds
<torvalds@g5.osdl.org>
Sat, 23 Jul 2005 18:10:21 +0000
(11:10 -0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Sat, 23 Jul 2005 18:10:21 +0000
(11:10 -0700)
It was broken by the IPv6 patches - we need to remove the ":" part from
the hostname for a successful name lookup.
connect.c
patch
|
blob
|
history
diff --git
a/connect.c
b/connect.c
index
dcbbefa
..
a910af9
100644
(file)
--- a/
connect.c
+++ b/
connect.c
@@
-119,8
+119,10
@@
static int git_tcp_connect(int fd[2], const char *prog, char *host, char *path)
end = host;
colon = strchr(end, ':');
- if (colon)
+ if (colon) {
+ *colon = 0;
port = colon + 1;
+ }
memset(&hints, 0, sizeof(hints));
hints.ai_socktype = SOCK_STREAM;