aboutsummaryrefslogtreecommitdiffstats
path: root/diff.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-03-13 22:56:04 -0700
committerJunio C Hamano <gitster@pobox.com>2015-03-13 22:56:04 -0700
commita4b4f9b8e317844ef64ec073241d38c9a656b2c8 (patch)
tree57cc5feab6b76b64687035c8b075527023a19e49 /diff.c
parentMerge branch 'ms/submodule-update-config-doc' into maint (diff)
parentdiff --shortstat --dirstat: remove duplicate output (diff)
downloadgit-a4b4f9b8e317844ef64ec073241d38c9a656b2c8.tar.gz
git-a4b4f9b8e317844ef64ec073241d38c9a656b2c8.zip
Merge branch 'mk/diff-shortstat-dirstat-fix' into maint
"git diff --shortstat --dirstat=changes" showed a dirstat based on lines that was never asked by the end user in addition to the dirstat that the user asked for. * mk/diff-shortstat-dirstat-fix: diff --shortstat --dirstat: remove duplicate output
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index d1bd534cae..abc32c8a7d 100644
--- a/diff.c
+++ b/diff.c
@@ -4541,7 +4541,7 @@ void diff_flush(struct diff_options *options)
show_stats(&diffstat, options);
if (output_format & DIFF_FORMAT_SHORTSTAT)
show_shortstats(&diffstat, options);
- if (output_format & DIFF_FORMAT_DIRSTAT)
+ if (output_format & DIFF_FORMAT_DIRSTAT && dirstat_by_line)
show_dirstat_by_line(&diffstat, options);
free_diffstat_info(&diffstat);
separator++;