diff options
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -5669,12 +5669,11 @@ static void irc_handle_isupport_casemapping (struct server *s, char *value) { if (!strcmp (value, "ascii")) - irc_set_casemapping (s, tolower_ascii, tolower_ascii_strxfrm); + irc_set_casemapping (s, tolower_ascii, tolower_ascii_strxfrm); else if (!strcmp (value, "rfc1459")) - irc_set_casemapping (s, irc_tolower, irc_strxfrm); + irc_set_casemapping (s, irc_tolower, irc_strxfrm); else if (!strcmp (value, "rfc1459-strict")) - // TODO: implement - irc_set_casemapping (s, irc_tolower, irc_strxfrm); + irc_set_casemapping (s, irc_tolower_strict, irc_strxfrm_strict); } static void |