summaryrefslogtreecommitdiff
path: root/src/transport.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-06-08 13:09:47 +0200
committerCarlos Martín Nieto <carlos@cmartin.tk>2011-06-26 18:18:13 +0200
commitecb6ca0e1f908c1480a602e8cca16bd8916b8a99 (patch)
tree725b0ece3bf3b99fd8109cb315652b5d18d14136 /src/transport.c
parent6a9597c5b57456dfe02e4b5ba94ef437907fe1f1 (diff)
downloadlibgit2-ecb6ca0e1f908c1480a602e8cca16bd8916b8a99.tar.gz
Implement the git TCP transport up to ls-remote
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src/transport.c')
-rw-r--r--src/transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport.c b/src/transport.c
index 2ef99dc38..fb0dc32c9 100644
--- a/src/transport.c
+++ b/src/transport.c
@@ -8,7 +8,7 @@ struct {
char *prefix;
git_transport_cb fn;
} transports[] = {
- {"git://", git_transport_dummy},
+ {"git://", git_transport_git},
{"http://", git_transport_dummy},
{"https://", git_transport_dummy},
{"file://", git_transport_local},