diff options
author | Tay Ray Chuan <rctay89@gmail.com> | 2010-03-02 18:49:27 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-03-02 11:10:36 -0800 |
commit | b5e59989eb20a8d6257760605052fe1d3fefca88 (patch) | |
tree | 6aec52af45aea48fc9fe6b07b1ca56dfdeb17ca7 /http-push.c | |
parent | 6cbd6e92616773457574f9755910f44b3c34a983 (diff) | |
download | git-b5e59989eb20a8d6257760605052fe1d3fefca88.tar.gz git-b5e59989eb20a8d6257760605052fe1d3fefca88.tar.xz |
http-push: remove "|| 1" to enable verbose check
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 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); |