mirror of
https://git.proxmox.com/git/libgit2
synced 2025-12-30 19:51:27 +00:00
clone::local test: isalpha -> git__isalpha
This commit is contained in:
parent
90aa2bf39b
commit
16288d2db3
@ -26,7 +26,7 @@ static int git_style_unc_path(git_buf *buf, const char *host, const char *path)
|
||||
if (path[0] == '/')
|
||||
path++;
|
||||
|
||||
if (isalpha(path[0]) && path[1] == ':' && path[2] == '/') {
|
||||
if (git__isalpha(path[0]) && path[1] == ':' && path[2] == '/') {
|
||||
git_buf_printf(buf, "%c$/", path[0]);
|
||||
path += 3;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user