diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-03-15 00:58:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-03-15 00:58:50 -0700 |
commit | 78d909a4943e54a0730c973597bd309912f70397 (patch) | |
tree | 2e7be614c1b912798a7866aaadbd776285e18b95 /http-push.c | |
parent | 53997a30f8138f41d1d9c7a45e84106cc21c0558 (diff) | |
parent | 26e1e0b23a1d145f9fee699538c11bbbb996d558 (diff) | |
download | git-78d909a4943e54a0730c973597bd309912f70397.tar.gz |
Merge branch 'tc/http-cleanup'
* tc/http-cleanup:
remote-curl: init walker only when needed
remote-curl: use http_fetch_ref() instead of walker wrapper
http: init and cleanup separately from http-walker
http-walker: cleanup more thoroughly
http-push: remove "|| 1" to enable verbose check
t554[01]-http-push: refactor, add non-ff tests
t5541-http-push: check that ref is unchanged for non-ff test
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index 432b20f2d9..415b1ab0a7 100644 --- a/http-push.c +++ b/http-push.c @@ -1965,7 +1965,7 @@ int main(int argc, char **argv) } if (!hashcmp(ref->old_sha1, ref->peer_ref->new_sha1)) { - if (push_verbosely || 1) + if (push_verbosely) fprintf(stderr, "'%s': up-to-date\n", ref->name); if (helper_status) printf("ok %s up to date\n", ref->name); |