git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Do not let lstree output recursively when a directory whose name is a prefix of the others is given in the path list.
@ 2010-09-09 18:21 davi.reis
  2010-09-09 18:21 ` [PATCH 2/2] Added test from David Glasser davi.reis
  2010-09-09 21:30 ` [PATCH 1/2] Do not let lstree output recursively when a directory whose name is a prefix of the others is given in the path list Matthieu Moy
  0 siblings, 2 replies; 5+ messages in thread
From: davi.reis @ 2010-09-09 18:21 UTC (permalink / raw)
  To: git; +Cc: Davi Reis

From: Davi Reis <davi@davi-macbookpro.local>

---
 builtin/ls-tree.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/builtin/ls-tree.c b/builtin/ls-tree.c
index dc86b0d..fa427e2 100644
--- a/builtin/ls-tree.c
+++ b/builtin/ls-tree.c
@@ -52,6 +52,8 @@ static int show_recursive(const char *base, int baselen, const char *pathname)
 		speclen = strlen(spec);
 		if (speclen <= len)
 			continue;
+		if (spec[len] != 0 && spec[len] != '/')
+			continue;
 		if (memcmp(pathname, spec, len))
 			continue;
 		return 1;
-- 
1.7.2.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-09-09 21:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-09 18:21 [PATCH 1/2] Do not let lstree output recursively when a directory whose name is a prefix of the others is given in the path list davi.reis
2010-09-09 18:21 ` [PATCH 2/2] Added test from David Glasser davi.reis
2010-09-09 21:33   ` Matthieu Moy
2010-09-09 21:44     ` Davi Reis
2010-09-09 21:30 ` [PATCH 1/2] Do not let lstree output recursively when a directory whose name is a prefix of the others is given in the path list Matthieu Moy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).