# | Line 92 | Line 92 | static struct capabilities | |
---|---|---|
92 | static int | |
93 | capab_sort(const struct capabilities *cap1, const struct capabilities *cap2) | |
94 | { | |
95 | < | return irccmp(cap1->name, cap2->name); |
95 | > | return strcasecmp(cap1->name, cap2->name); |
96 | } | |
97 | ||
98 | static int | |
# | Line 392 | Line 392 | static struct subcmd | |
392 | static int | |
393 | subcmd_search(const char *cmd, const struct subcmd *elem) | |
394 | { | |
395 | < | return irccmp(cmd, elem->cmd); |
395 | > | return strcasecmp(cmd, elem->cmd); |
396 | } | |
397 | ||
398 | /** Handle a capability request or response from a client. |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |