summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/authkey.c
diff options
context:
space:
mode:
authorMaarten Bosmans <mkbosmans@gmail.com>2011-01-06 02:10:45 +0100
committerMaarten Bosmans <mkbosmans@gmail.com>2011-02-17 12:02:30 +0100
commitd6d43367053bbc0d99acd7a21a21e15a5aaae659 (patch)
tree4bfdbac364d9f56b4b022b673cf8b9be1d59a24b /src/pulsecore/authkey.c
parent7b90e3b942b43521e4ed6b9f07b14ee3ae156cf3 (diff)
Implement some functions for win32
And disable building binaries for win32 that make no sense there
Diffstat (limited to 'src/pulsecore/authkey.c')
-rw-r--r--src/pulsecore/authkey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/authkey.c b/src/pulsecore/authkey.c
index d671e367..684bc010 100644
--- a/src/pulsecore/authkey.c
+++ b/src/pulsecore/authkey.c
@@ -151,7 +151,7 @@ static char *normalize_path(const char *fn) {
#ifndef OS_IS_WIN32
if (fn[0] != '/') {
#else
- if (strlen(fn) < 3 || !isalpha(fn[0]) || fn[1] != ':' || fn[2] != '\\') {
+ if (strlen(fn) < 3 || !IsCharAlpha(fn[0]) || fn[1] != ':' || fn[2] != '\\') {
#endif
char *homedir, *s;