summaryrefslogtreecommitdiff
path: root/builtin-archive.c
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@dev.mellanox.co.il>2007-05-16 17:09:41 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-05-16 19:48:18 (GMT)
commit7841ce79854868eaaa146c1d018b17fc4f3320be (patch)
tree297639aba698d4c6a1c1b573ea96aa741c6bc9c3 /builtin-archive.c
parentfdcb769916c93b53517ef1b4cae447a3333c9b86 (diff)
downloadgit-7841ce79854868eaaa146c1d018b17fc4f3320be.zip
git-7841ce79854868eaaa146c1d018b17fc4f3320be.tar.gz
git-7841ce79854868eaaa146c1d018b17fc4f3320be.tar.bz2
connect: display connection progress
Make git notify the user about host resolution/connection attempts. This is useful both as a progress indicator on slow links, and helps reassure the user there are no firewall problems. Signed-off-by: Michael S. Tsirkin <mst@dev.mellanox.co.il> Acked-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-archive.c')
-rw-r--r--builtin-archive.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-archive.c b/builtin-archive.c
index 7f4e409..187491b 100644
--- a/builtin-archive.c
+++ b/builtin-archive.c
@@ -45,7 +45,7 @@ static int run_remote_archiver(const char *remote, int argc,
}
url = xstrdup(remote);
- pid = git_connect(fd, url, exec);
+ pid = git_connect(fd, url, exec, 0);
if (pid < 0)
return pid;