g_strncasecmp --> g_ascii_strncasecmp

svn path=/trunk/; revision=24443
This commit is contained in:
Bill Meier 2008-02-23 17:06:57 +00:00
parent ae42e39556
commit 01704fde45
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ raw_pipe_open(const char *pipe_name)
pncopy = g_strdup(pipe_name);
if (strstr(pncopy, "\\\\") == pncopy) {
pos = strchr(pncopy + 3, '\\');
if (pos && g_strncasecmp(pos, PIPE_STR, strlen(PIPE_STR)) != 0)
if (pos && g_ascii_strncasecmp(pos, PIPE_STR, strlen(PIPE_STR)) != 0)
pos = NULL;
}