projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7384889
)
diff-tree: fix up comparison of "interesting" sub-trees
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Wed, 18 May 2005 20:50:24 +0000
(13:50 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Wed, 18 May 2005 20:50:24 +0000
(13:50 -0700)
We used to trigger the "interesting subdirectory" check for any
matching name that started with the same character series, regardless
of whether it had the matching slash or not.
diff-tree.c
patch
|
blob
|
history
diff --git
a/diff-tree.c
b/diff-tree.c
index
acd1524
..
3bc7480
100644
(file)
--- a/
diff-tree.c
+++ b/
diff-tree.c
@@
-209,6
+209,11
@@
static int interesting(void *tree, unsigned long size, const char *base)
if (pathlen > matchlen)
continue;
+ if (matchlen > pathlen) {
+ if (match[pathlen] != '/')
+ continue;
+ }
+
if (strncmp(path, match, pathlen))
continue;