diff options
Diffstat (limited to 'diff-lib.c')
| -rw-r--r-- | diff-lib.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/diff-lib.c b/diff-lib.c index f1a9053168..346cac651d 100644 --- a/diff-lib.c +++ b/diff-lib.c @@ -474,7 +474,6 @@ static int diff_cache(struct rev_info *revs,  	opts.dst_index = NULL;  	opts.pathspec = &revs->diffopt.pathspec;  	opts.pathspec->recursive = 1; -	opts.pathspec->max_depth = -1;  	init_tree_desc(&t, tree->buffer, tree->size);  	return unpack_trees(1, &t, &opts); @@ -500,7 +499,7 @@ int do_diff_cache(const unsigned char *tree_sha1, struct diff_options *opt)  	struct rev_info revs;  	init_revisions(&revs, NULL); -	init_pathspec(&revs.prune_data, opt->pathspec.raw); +	copy_pathspec(&revs.prune_data, &opt->pathspec);  	revs.diffopt = *opt;  	if (diff_cache(&revs, tree_sha1, NULL, 1))  | 
