/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
ce_match_stat, run_diff_files: use symbolic constants for readability
[git/git.git]
/
builtin-apply.c
diff --git
a/builtin-apply.c
b/builtin-apply.c
index
5cc90e6
..
0fff02e
100644
(file)
--- a/
builtin-apply.c
+++ b/
builtin-apply.c
@@
-2099,7
+2099,7
@@
static int verify_index_match(struct cache_entry *ce, struct stat *st)
return -1;
return 0;
}
- return ce_match_stat(ce, st,
1
);
+ return ce_match_stat(ce, st,
CE_MATCH_IGNORE_VALID
);
}
static int check_patch(struct patch *patch, struct patch *prev_patch)