compiler fix on stricmp
This commit is contained in:
parent
2f4c6426df
commit
ced70de7d1
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue