This variable should prevent anything to be printed on both stderr
and stdout.

Signed-off-by: Christian Couder <chrisc...@tuxfamily.org>
---
 apply.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/apply.c b/apply.c
index dd9b301..2529534 100644
--- a/apply.c
+++ b/apply.c
@@ -4679,13 +4679,13 @@ static int apply_patch(struct apply_state *state,
                goto end;
        }
 
-       if (state->diffstat)
+       if (state->diffstat && !state->be_silent)
                stat_patch_list(state, list);
 
-       if (state->numstat)
+       if (state->numstat && !state->be_silent)
                numstat_patch_list(state, list);
 
-       if (state->summary)
+       if (state->summary && !state->be_silent)
                summary_patch_list(list);
 
 end:
-- 
2.9.0.rc2.411.g3e2ca28

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to