]> jfr.im git - solanum.git/blobdiff - extensions/chm_operonly_compat.c
Merge branch 'master' into authd-framework-2
[solanum.git] / extensions / chm_operonly_compat.c
index 73fe2690991bf1075fc01b674f43ca28f8f41646..ef8f0b3eedc8b75c4959f157c45f5d1391883ecb 100644 (file)
@@ -9,13 +9,16 @@
 #include "ircd.h"
 #include "chmode.h"
 
+static const char chm_operonly_compat[] =
+       "Adds an emulated channel mode +O which is converted into mode +i and +I $o";
+
 static int _modinit(void);
 static void _moddeinit(void);
 static void chm_operonly(struct Client *source_p, struct Channel *chptr,
        int alevel, int parc, int *parn,
        const char **parv, int *errors, int dir, char c, long mode_type);
 
-DECLARE_MODULE_AV1(chm_operonly_compat, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision$");
+DECLARE_MODULE_AV2(chm_operonly_compat, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, chm_operonly_compat);
 
 static int
 _modinit(void)