]> jfr.im git - solanum.git/blobdiff - modules/m_version.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[solanum.git] / modules / m_version.c
index 9b36fb456b0e3e702c0d1b3ce85d53d02ac1a6a9..0462d6b6895e1f2d3602b2eb778664c1b7c43206 100644 (file)
 #include "parse.h"
 #include "modules.h"
 
-static char *confopts(struct Client *source_p);
+static char *confopts(void);
 
-static int m_version(struct Client *, struct Client *, int, const char **);
-static int mo_version(struct Client *, struct Client *, int, const char **);
+static int m_version(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int mo_version(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 struct Message version_msgtab = {
-       "VERSION", 0, 0, 0, MFLG_SLOW,
+       "VERSION", 0, 0, 0, 0,
        {mg_unreg, {m_version, 0}, {mo_version, 0}, {mo_version, 0}, mg_ignore, {mo_version, 0}}
 };
 
@@ -54,7 +54,7 @@ DECLARE_MODULE_AV1(version, NULL, NULL, version_clist, NULL, NULL, "$Revision: 1
  *      parv[1] = remote server
  */
 static int
-m_version(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+m_version(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        static time_t last_used = 0L;
 
@@ -77,9 +77,9 @@ m_version(struct Client *client_p, struct Client *source_p, int parc, const char
        sendto_one_numeric(source_p, RPL_VERSION, form_str(RPL_VERSION),
                           ircd_version, serno,
 #ifdef CUSTOM_BRANDING
-                          PACKAGE_NAME " " PACKAGE_VERSION,
+                          PACKAGE_NAME "-" PACKAGE_VERSION,
 #endif
-                          me.name, confopts(source_p), TS_CURRENT,
+                          me.name, confopts(), TS_CURRENT,
                           ServerInfo.sid);
 
        show_isupport(source_p);
@@ -92,16 +92,16 @@ m_version(struct Client *client_p, struct Client *source_p, int parc, const char
  *      parv[1] = remote server
  */
 static int
-mo_version(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+mo_version(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        if(hunt_server(client_p, source_p, ":%s VERSION :%s", 1, parc, parv) == HUNTED_ISME)
        {
                sendto_one_numeric(source_p, RPL_VERSION, form_str(RPL_VERSION),
                                   ircd_version, serno,
 #ifdef CUSTOM_BRANDING
-                                  PACKAGE_NAME " " PACKAGE_VERSION,
+                                  PACKAGE_NAME "-" PACKAGE_VERSION,
 #endif
-                                  me.name, confopts(source_p), TS_CURRENT,
+                                  me.name, confopts(), TS_CURRENT,
                                   ServerInfo.sid);
                show_isupport(source_p);
        }
@@ -110,12 +110,12 @@ mo_version(struct Client *client_p, struct Client *source_p, int parc, const cha
 }
 
 /* confopts()
- * input  - client pointer
+ * input  - none
  * output - ircd.conf option string
  * side effects - none
  */
 static char *
-confopts(struct Client *source_p)
+confopts(void)
 {
        static char result[15];
        char *p;