From: Matheus Tavares Date: Wed, 10 Jul 2019 23:59:04 +0000 (-0300) Subject: clone: replace strcmp by fspathcmp X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=c4d9c506f7a802ed263071c82319098e3fcd0b3e;p=git.git clone: replace strcmp by fspathcmp Replace the use of strcmp by fspathcmp at copy_or_link_directory, which is more permissive/friendly to case-insensitive file systems. Suggested-by: Nguyễn Thái Ngọc Duy Signed-off-by: Matheus Tavares Signed-off-by: Junio C Hamano --- diff --git a/builtin/clone.c b/builtin/clone.c index a4ce801a67..62b6a0a352 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -441,7 +441,7 @@ static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest, } /* Files that cannot be copied bit-for-bit... */ - if (!strcmp(iter->relative_path, "info/alternates")) { + if (!fspathcmp(iter->relative_path, "info/alternates")) { copy_alternates(src, src_repo); continue; }