summaryrefslogtreecommitdiffstats
path: root/lib/icmpv6.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/icmpv6.c')
-rw-r--r--lib/icmpv6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/icmpv6.c b/lib/icmpv6.c
index c32a6a4..5ba93ca 100644
--- a/lib/icmpv6.c
+++ b/lib/icmpv6.c
@@ -57,7 +57,7 @@ int name_to_icmpv6(const char *str, uint16_t *typecode)
unsigned int i;
for (i = 0; i < ARRAY_SIZE(icmpv6_typecodes); i++)
- if (STRNEQ(icmpv6_typecodes[i].name, str, strlen(str))) {
+ if (STRNCASEQ(icmpv6_typecodes[i].name, str, strlen(str))) {
*typecode = (icmpv6_typecodes[i].type << 8) | icmpv6_typecodes[i].code;
return 0;
}