Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
tree-walk: drop unused parameter from match_dir_prefix
author
Dan McGee
<dpmcgee@gmail.com>
Fri, 9 Sep 2011 02:02:45 +0000
(21:02 -0500)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 29 Sep 2011 01:24:36 +0000
(18:24 -0700)
Signed-off-by: Dan McGee <dpmcgee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
tree-walk.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
ec014ea
)
diff --git
a/tree-walk.c
b/tree-walk.c
index 322becc3b4ad50b8e87fae8f6d5d38f7edc51f01..9be800760c79638ff75f3b30c344e8a80697224d 100644
(file)
--- a/
tree-walk.c
+++ b/
tree-walk.c
@@
-522,7
+522,7
@@
static int match_entry(const struct name_entry *entry, int pathlen,
return 0;
}
return 0;
}
-static int match_dir_prefix(const char *base,
int baselen,
+static int match_dir_prefix(const char *base,
const char *match, int matchlen)
{
if (strncmp(base, match, matchlen))
const char *match, int matchlen)
{
if (strncmp(base, match, matchlen))
@@
-579,7
+579,7
@@
int tree_entry_interesting(const struct name_entry *entry,
if (baselen >= matchlen) {
/* If it doesn't match, move along... */
if (baselen >= matchlen) {
/* If it doesn't match, move along... */
- if (!match_dir_prefix(base_str,
baselen,
match, matchlen))
+ if (!match_dir_prefix(base_str, match, matchlen))
goto match_wildcards;
if (!ps->recursive || ps->max_depth == -1)
goto match_wildcards;
if (!ps->recursive || ps->max_depth == -1)