diff options
author | Petr Baudis <pasky@suse.cz> | 2005-11-12 01:49:59 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-11 21:14:46 -0800 |
commit | 6fd72e39af8a69615d32c3fd4d5fe0788f54a2ea (patch) | |
tree | 4c1dae67d9240e91935ff84273939e76895606c5 /http-fetch.c | |
parent | e9af60c88bbd152ad04640ddb93dc927fc7a10b6 (diff) | |
download | git-6fd72e39af8a69615d32c3fd4d5fe0788f54a2ea.tar.gz |
Show URL in the "Getting <foo> list" http-fetch messages
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'http-fetch.c')
-rw-r--r-- | http-fetch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http-fetch.c b/http-fetch.c index 99921cc8da..f39e748fc0 100644 --- a/http-fetch.c +++ b/http-fetch.c @@ -788,7 +788,7 @@ static int fetch_alternates(char *base) buffer.buffer = data; if (get_verbosely) - fprintf(stderr, "Getting alternates list\n"); + fprintf(stderr, "Getting alternates list for %s\n", base); url = xmalloc(strlen(base) + 31); sprintf(url, "%s/objects/info/http-alternates", base); @@ -911,7 +911,7 @@ static int fetch_indices(struct alt_base *repo) buffer.buffer = data; if (get_verbosely) - fprintf(stderr, "Getting pack list\n"); + fprintf(stderr, "Getting pack list for %s\n", repo->base); url = xmalloc(strlen(repo->base) + 21); sprintf(url, "%s/objects/info/packs", repo->base); |