diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-06-13 11:20:46 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-13 11:20:46 -0700 |
commit | 39b5977b1391b0ee1fdfecf04955c32192f64936 (patch) | |
tree | 14edbf7a75770c0123741e771b990ba5a8a3ce63 /combine-diff.c | |
parent | d5c48c531816102d3a86fd807fb19e661a3787d5 (diff) | |
parent | 582aa00bdffb27abcf1b27d541b4c231a395d3b8 (diff) | |
download | git-39b5977b1391b0ee1fdfecf04955c32192f64936.tar.gz |
Merge branch 'rs/diff-no-minimal'
* rs/diff-no-minimal:
git diff too slow for a file
Diffstat (limited to 'combine-diff.c')
-rw-r--r-- | combine-diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/combine-diff.c b/combine-diff.c index 7557136c82..655fa89d8a 100644 --- a/combine-diff.c +++ b/combine-diff.c @@ -220,7 +220,7 @@ static void combine_diff(const unsigned char *parent, unsigned int mode, parent_file.ptr = grab_blob(parent, mode, &sz); parent_file.size = sz; memset(&xpp, 0, sizeof(xpp)); - xpp.flags = XDF_NEED_MINIMAL; + xpp.flags = 0; memset(&xecfg, 0, sizeof(xecfg)); memset(&state, 0, sizeof(state)); state.nmask = nmask; |