From: Tay Ray Chuan Date: Tue, 2 Mar 2010 10:49:27 +0000 (+0800) Subject: http-push: remove "|| 1" to enable verbose check X-Git-Tag: v1.7.1-rc0~65^2~4 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b5e59989eb20a8d6257760605052fe1d3fefca88;p=git.git http-push: remove "|| 1" to enable verbose check Signed-off-by: Tay Ray Chuan Signed-off-by: Junio C Hamano --- diff --git a/http-push.c b/http-push.c index 432b20f2d..415b1ab0a 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);