aboutsummaryrefslogtreecommitdiffstats
path: root/rawshark.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-23 17:06:57 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-23 17:06:57 +0000
commit91de19bb0145a5c93fa5f2bb725e9ff8c21861d5 (patch)
tree13442e549343a085ef60ebde69ca5f64927da6f8 /rawshark.c
parentcd6637e7dc5284dcda974d4f484c7986dcde86b3 (diff)
g_strncasecmp --> g_ascii_strncasecmp
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24443 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'rawshark.c')
-rw-r--r--rawshark.c2
1 files changed, 1 insertions, 1 deletions
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;
}