moved strcaseeq() macro from constants.h to utils.h

This commit is contained in:
Andreas Steffen
2009-04-17 09:52:49 +00:00
parent 2775c9aac8
commit 63176bbcb0
6 changed files with 92 additions and 41 deletions
@@ -58,7 +58,7 @@ eap_type_t eap_type_from_string(char *name)
for (i = 0; i < countof(types); i++)
{
if (strcasecmp(name, types[i].name) == 0)
if (strcasecmp(name, types[i].name))
{
return types[i].type;
}