projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9666ad
)
cache_name_compare() compares name and stage, nothing else.
author
Junio C Hamano
<junkio@cox.net>
Mon, 13 Feb 2006 07:46:25 +0000
(23:46 -0800)
committer
Junio C Hamano
<junkio@cox.net>
Mon, 13 Feb 2006 07:46:25 +0000
(23:46 -0800)
The code was a bit unclear in expressing what it wants to compare.
Signed-off-by: Junio C Hamano <junkio@cox.net>
read-cache.c
patch
|
blob
|
history
diff --git
a/read-cache.c
b/read-cache.c
index
efbb1be
..
f97f92d
100644
(file)
--- a/
read-cache.c
+++ b/
read-cache.c
@@
-246,9
+246,9
@@
int cache_name_compare(const char *name1, int flags1, const char *name2, int fla
if (len1 > len2)
return 1;
- /*
Differences between "assume up-to-date" should not matter.
*/
- flags1 &=
~CE_VALID
;
- flags2 &=
~CE_VALID
;
+ /*
Compare stages
*/
+ flags1 &=
CE_STAGEMASK
;
+ flags2 &=
CE_STAGEMASK
;
if (flags1 < flags2)
return -1;