]> jfr.im git - solanum.git/blobdiff - modules/chm_nocolour.c
Mailmap and copyright update for Ariadne
[solanum.git] / modules / chm_nocolour.c
index 3d3e2bb71f3564c99cae04c3d60380183e5ebbf6..003788cd00e747786b94eebb5d7640dad7eb3f75 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * charybdis: an advanced ircd.
+ * Solanum: a slightly advanced ircd
  * chm_nocolour: strip colours (+c mode).
  *
- * Copyright (c) 2012 William Pitcock <nenolod@dereferenced.org>
+ * Copyright (c) 2012 Ariadne Conill <ariadne@dereferenced.org>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -34,6 +34,9 @@
 #include "chmode.h"
 #include "inline/stringops.h"
 
+static const char chm_nocolour_desc[] =
+       "Enables channel mode +c that filters colours and formatting from a channel";
+
 static char buf[BUFSIZE];
 static unsigned int mode_nocolour;
 
@@ -76,4 +79,4 @@ _moddeinit(void)
        cflag_orphan('c');
 }
 
-DECLARE_MODULE_AV1(chm_nocolour, _modinit, _moddeinit, NULL, NULL, chm_nocolour_hfnlist, "$Revision$");
+DECLARE_MODULE_AV2(chm_nocolour, _modinit, _moddeinit, NULL, NULL, chm_nocolour_hfnlist, NULL, NULL, chm_nocolour_desc);