changeset 48:af1e12c8ebf1 rel-0_5_3

Use th_strncasecmp().
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 19 Feb 2015 18:07:08 +0200
parents 6dd8caa9e133
children 2871c86535ad
files sidinfo.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sidinfo.c	Mon Dec 15 20:00:22 2014 +0200
+++ b/sidinfo.c	Thu Feb 19 18:07:08 2015 +0200
@@ -137,7 +137,7 @@
     for (index = 0; index < noptPSFlags; index++)
     {
         const PSFOption *opt = &optPSFlags[index];
-        if (strncasecmp(opt->name, field, len) == 0)
+        if (th_strncasecmp(opt->name, field, len) == 0)
         {
             if (found >= 0)
                 return -2;