Mercurial > hg
diff mercurial/util.py @ 15718:c604a3d1969d
icasefs: disuse length check against un-normcase()-ed filenames
this patch disuses length check against un-normcase()-ed filenames
gotten by "os.listdir()", because there is no assurance that
filesystem stores filenames normalized except in letter case, even
though some case insensitive filesystems (in some environment, for
some language setting) store them in such manner.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Sat, 24 Dec 2011 00:50:56 +0900 |
parents | f63e40047372 |
children | 1dd60426b061 |
line wrap: on
line diff
--- a/mercurial/util.py Thu Dec 22 15:56:27 2011 -0600 +++ b/mercurial/util.py Sat Dec 24 00:50:56 2011 +0900 @@ -622,9 +622,8 @@ The root should be normcase-ed, too. ''' def find(p, contents): - lenp = len(p) for n in contents: - if lenp == len(n) and normcase(n) == p: + if normcase(n) == p: return n return None