summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ed24928)
raw | patch | inline | side by side (parent: ed24928)
author | Junio C Hamano <junkio@cox.net> | |
Wed, 14 Dec 2005 05:39:56 +0000 (21:39 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 14 Dec 2005 05:39:56 +0000 (21:39 -0800) |
3bd348aeea24709cd9be4b9d741f79b6014cd7e3 commit broke checking
out specific paths.
Signed-off-by: Junio C Hamano <junkio@cox.net>
out specific paths.
Signed-off-by: Junio C Hamano <junkio@cox.net>
checkout-index.c | patch | blob | history |
diff --git a/checkout-index.c b/checkout-index.c
index 1e1c9727e0e8568e3e2768ceae8831e993f22b72..53dd8cba6f0c56125545acd46f1091366949f89b 100644 (file)
--- a/checkout-index.c
+++ b/checkout-index.c
while (pos < active_nr) {
struct cache_entry *ce = active_cache[pos];
- if (ce_namelen(ce) != namelen &&
+ if (ce_namelen(ce) != namelen ||
memcmp(ce->name, name, namelen))
break;
has_same_name = 1;