diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c index e411f356f..c8bc8d402 100644 --- a/src/path.c +++ b/src/path.c @@ -1662,7 +1662,7 @@ GIT_INLINE(bool) verify_dotgit_ntfs_generic(const char *name, size_t len, const saw_tilde = 1; } else if (i >= 6) { return true; - } else if (name[i] < 0) { + } else if ((unsigned char)name[i] > 127) { return true; } else if (git__tolower(name[i]) != shortname_pfix[i]) { return true; |