]> jfr.im git - solanum.git/blobdiff - modules/m_version.c
modules: chase MsgBuf API change
[solanum.git] / modules / m_version.c
index f19e8fb4f0ece6a63310030ac62c051b8c974bf3..2a12ffb9c674b81e19aaee2fca56a01a63ac9abe 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,
@@ -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;
 
@@ -79,7 +79,7 @@ m_version(struct Client *client_p, struct Client *source_p, int parc, const char
 #ifdef CUSTOM_BRANDING
                           PACKAGE_NAME "-" PACKAGE_VERSION,
 #endif
-                          me.name, confopts(source_p), TS_CURRENT,
+                          me.name, confopts(), TS_CURRENT,
                           ServerInfo.sid);
 
        show_isupport(source_p);
@@ -92,7 +92,7 @@ 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)
        {
@@ -101,7 +101,7 @@ mo_version(struct Client *client_p, struct Client *source_p, int parc, const cha
 #ifdef CUSTOM_BRANDING
                                   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;