diff options
Diffstat (limited to 'src/plugins/regexp.c')
-rw-r--r-- | src/plugins/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/regexp.c b/src/plugins/regexp.c index b856aac93..097df7f96 100644 --- a/src/plugins/regexp.c +++ b/src/plugins/regexp.c @@ -225,7 +225,7 @@ find_raw_header_pos (const char *headers, const char *headerv) /* Folding */ continue; } - if (memcmp (p, headerv, headerlen) == 0) { + if (g_ascii_strncasecmp (p, headerv, headerlen) == 0) { /* Find semicolon */ p += headerlen; if (*p == ':') { |