aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common.c21
-rw-r--r--degesch.c7
2 files changed, 24 insertions, 4 deletions
diff --git a/common.c b/common.c
index 12e1eff..62efb6f 100644
--- a/common.c
+++ b/common.c
@@ -58,6 +58,16 @@
(link)->next = (following); \
BLOCK_END
+#define TRIVIAL_STRXFRM(name, fn) \
+ static size_t \
+ name (char *dest, const char *src, size_t n) \
+ { \
+ size_t len = strlen (src); \
+ while (n-- && (*dest++ = (fn) (*src++))) \
+ ; \
+ return len; \
+ }
+
static void
transform_str (char *s, int (*tolower) (int c))
{
@@ -103,6 +113,17 @@ strncasecmp_ascii (const char *a, const char *b, size_t n)
return 0;
}
+static int
+irc_tolower_strict (int c)
+{
+ if (c == '[') return '{';
+ if (c == ']') return '}';
+ if (c == '\\') return '|';
+ return c >= 'A' && c <= 'Z' ? c + ('a' - 'A') : c;
+}
+
+TRIVIAL_STRXFRM (irc_strxfrm_strict, irc_tolower_strict)
+
static char *
resolve_relative_runtime_filename (const char *filename)
{
diff --git a/degesch.c b/degesch.c
index 556c149..ef77c2a 100644
--- a/degesch.c
+++ b/degesch.c
@@ -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