Merge branch 'jh/dirstat' into next

* jh/dirstat:
  --dirstat: In case of renames, use target filename instead of source filename
This commit is contained in:
Junio C Hamano
2011-04-12 13:50:39 -07:00

2
diff.c
View File

@@ -1543,7 +1543,7 @@ static void show_dirstat(struct diff_options *options)
unsigned long copied, added, damage;
int content_changed;
name = p->one->path ? p->one->path : p->two->path;
name = p->two->path ? p->two->path : p->one->path;
if (p->one->sha1_valid && p->two->sha1_valid)
content_changed = hashcmp(p->one->sha1, p->two->sha1);