Commit 16288d2db3a303ef6a6fafcd8631567721ea6ddb

Edward Thomson 2014-10-25T19:51:46

clone::local test: isalpha -> git__isalpha

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests/clone/local.c b/tests/clone/local.c
index fec3be5..f14b33c 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;
 	}