compiler fix on stricmp

This commit is contained in:
Charles 2016-11-13 19:09:27 +01:00
parent 2f4c6426df
commit ced70de7d1
1 changed files with 1 additions and 1 deletions

View File

@ -767,7 +767,7 @@ void handleNotFound(void)
//Debugf("compare to '%s' ", me->name);
// Do we have this one ?
if (stricmp (me->name, uri) == 0 )
if (strcmp (me->name, uri) == 0 )
{
// no need to continue
found = true;