Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2014-10-26 02:51:46 +0300
committerEdward Thomson <ethomson@microsoft.com>2014-10-27 05:27:50 +0300
commit16288d2db3a303ef6a6fafcd8631567721ea6ddb (patch)
treece27da622684b7ddb3317b9473beeee347c6840d /tests/clone
parent90aa2bf39b27a9194bd1b4d88efea8f4281d0617 (diff)
clone::local test: isalpha -> git__isalpha
Diffstat (limited to 'tests/clone')
-rw-r--r--tests/clone/local.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/clone/local.c b/tests/clone/local.c
index fec3be519..f14b33c17 100644
--- a/tests/clone/local.c
+++ b/tests/clone/local.c
@@ -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;
}