aboutsummaryrefslogtreecommitdiffstats
path: root/http-push.c
diff options
context:
space:
mode:
authorTay Ray Chuan <rctay89@gmail.com>2010-03-02 18:49:27 +0800
committerJunio C Hamano <gitster@pobox.com>2010-03-02 11:10:36 -0800
commitb5e59989eb20a8d6257760605052fe1d3fefca88 (patch)
tree6aec52af45aea48fc9fe6b07b1ca56dfdeb17ca7 /http-push.c
parent6cbd6e92616773457574f9755910f44b3c34a983 (diff)
downloadgit-b5e59989eb20a8d6257760605052fe1d3fefca88.tar.gz
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.c2
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);