summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-01-07 21:27:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-01-07 21:27:56 (GMT)
commit3c84ac86fc896c108b789b8eb26b169cc0e8088a (patch)
tree647250e896ab9c29d8c4b3867aae4a5ee7d15822 /utf8.c
parent8e36a6d5752ced382ecd46a5f2cd94276f79451c (diff)
parent282616c72d1d08a77ca4fe1186cb708c38408d87 (diff)
downloadgit-3c84ac86fc896c108b789b8eb26b169cc0e8088a.zip
git-3c84ac86fc896c108b789b8eb26b169cc0e8088a.tar.gz
git-3c84ac86fc896c108b789b8eb26b169cc0e8088a.tar.bz2
Merge branch 'maint-2.0' into maint-2.1
* maint-2.0: is_hfs_dotgit: loosen over-eager match of \u{..47}
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c32
1 files changed, 20 insertions, 12 deletions
diff --git a/utf8.c b/utf8.c
index 3b77e97..7d2d6a0 100644
--- a/utf8.c
+++ b/utf8.c
@@ -567,8 +567,8 @@ int mbs_chrlen(const char **text, size_t *remainder_p, const char *encoding)
}
/*
- * Pick the next char from the stream, folding as an HFS+ filename comparison
- * would. Note that this is _not_ complete by any means. It's just enough
+ * Pick the next char from the stream, ignoring codepoints an HFS+ would.
+ * Note that this is _not_ complete by any means. It's just enough
* to make is_hfs_dotgit() work, and should not be used otherwise.
*/
static ucs_char_t next_hfs_char(const char **in)
@@ -605,12 +605,7 @@ static ucs_char_t next_hfs_char(const char **in)
continue;
}
- /*
- * there's a great deal of other case-folding that occurs,
- * but this is enough to catch anything that will convert
- * to ".git"
- */
- return tolower(out);
+ return out;
}
}
@@ -618,10 +613,23 @@ int is_hfs_dotgit(const char *path)
{
ucs_char_t c;
- if (next_hfs_char(&path) != '.' ||
- next_hfs_char(&path) != 'g' ||
- next_hfs_char(&path) != 'i' ||
- next_hfs_char(&path) != 't')
+ c = next_hfs_char(&path);
+ if (c != '.')
+ return 0;
+ c = next_hfs_char(&path);
+
+ /*
+ * there's a great deal of other case-folding that occurs
+ * in HFS+, but this is enough to catch anything that will
+ * convert to ".git"
+ */
+ if (c != 'g' && c != 'G')
+ return 0;
+ c = next_hfs_char(&path);
+ if (c != 'i' && c != 'I')
+ return 0;
+ c = next_hfs_char(&path);
+ if (c != 't' && c != 'T')
return 0;
c = next_hfs_char(&path);
if (c && !is_dir_sep(c))