Browse Source

Merge branch 'jc/diff' into next

* jc/diff:
  builtin-diff: fix comparison between two blobs.
maint
Junio C Hamano 19 years ago
parent
commit
70bde2bc31
  1. 8
      builtin-diff.c

8
builtin-diff.c

@ -132,7 +132,9 @@ static int builtin_diff_blobs(struct rev_info *revs, @@ -132,7 +132,9 @@ static int builtin_diff_blobs(struct rev_info *revs,
int argc, const char **argv,
struct blobinfo *blob)
{
/* Blobs */
/* Blobs: the arguments are reversed when setup_revisions()
* picked them up.
*/
unsigned mode = canon_mode(S_IFREG | 0644);

while (1 < argc) {
@ -145,8 +147,8 @@ static int builtin_diff_blobs(struct rev_info *revs, @@ -145,8 +147,8 @@ static int builtin_diff_blobs(struct rev_info *revs,
}
stuff_change(&revs->diffopt,
mode, mode,
blob[0].sha1, blob[1].sha1,
blob[1].name, blob[1].name);
blob[1].sha1, blob[0].sha1,
blob[0].name, blob[0].name);
diffcore_std(&revs->diffopt);
diff_flush(&revs->diffopt);
return 0;

Loading…
Cancel
Save