summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7384889)
raw | patch | inline | side by side (parent: 7384889)
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.
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 acd15243435742fdeb3bbdc29c1ff7ffa27cbb2f..3bc7480944037e1c0964217d35b5f1014e4f43fd 100644 (file)
--- a/diff-tree.c
+++ b/diff-tree.c
if (pathlen > matchlen)
continue;
+ if (matchlen > pathlen) {
+ if (match[pathlen] != '/')
+ continue;
+ }
+
if (strncmp(path, match, pathlen))
continue;