From 01704fde4567dacbaae6846a6d919de1161e2528 Mon Sep 17 00:00:00 2001 From: Bill Meier Date: Sat, 23 Feb 2008 17:06:57 +0000 Subject: [PATCH] g_strncasecmp --> g_ascii_strncasecmp svn path=/trunk/; revision=24443 --- rawshark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rawshark.c b/rawshark.c index 212482ea08..2d7615d9bd 100644 --- a/rawshark.c +++ b/rawshark.c @@ -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; }