# HG changeset patch # User Matti Hamalainen # Date 1424362028 -7200 # Node ID af1e12c8ebf15b96378db760812002e61468b7ca # Parent 6dd8caa9e1330bc17070d703976423546ac3b862 Use th_strncasecmp(). diff -r 6dd8caa9e133 -r af1e12c8ebf1 sidinfo.c --- 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;