diff-tree: fix up comparison of "interesting" sub-trees
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Wed, 18 May 2005 20:50:24 +0000 (13:50 -0700)
committerLinus 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

index acd1524..3bc7480 100644 (file)
@@ -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;