]> jfr.im git - solanum.git/blobdiff - modules/m_encap.c
Kill Travis
[solanum.git] / modules / m_encap.c
index 531b7957bcf811002cb39ed2d79e14cc98516349..f87ed65586815494041c0f0fa4590116027f8215 100644 (file)
@@ -31,8 +31,7 @@
 #include "send.h"
 #include "channel.h"
 #include "client.h"
-#include "common.h"
-#include "config.h"
+#include "defaults.h"
 #include "ircd.h"
 #include "numeric.h"
 #include "s_serv.h"
@@ -43,7 +42,7 @@
 
 static const char encap_desc[] = "Provides the TS6 ENCAP facility";
 
-static int ms_encap(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
+static void ms_encap(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
                int parc, const char *parv[]);
 
 struct Message encap_msgtab = {
@@ -61,7 +60,7 @@ DECLARE_MODULE_AV2(encap, NULL, NULL, encap_clist, NULL, NULL, NULL, NULL, encap
  * parv[2] - subcommand
  * parv[3] - parameters
  */
-static int
+static void
 ms_encap(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        char buffer[BUFSIZE];
@@ -78,7 +77,7 @@ ms_encap(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
 
                /* ugh, not even at the last parameter, just bail --fl */
                if((size_t)(cur_len + len) >= sizeof(buffer))
-                       return 0;
+                       return;
 
                snprintf(ptr, sizeof(buffer) - cur_len, "%s ", parv[i]);
                cur_len += len;
@@ -103,6 +102,4 @@ ms_encap(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
        /* if it matches us, find a matching handler and call it */
        if(match(parv[1], me.name))
                handle_encap(msgbuf_p, client_p, source_p, parv[2], parc - 2, parv + 2);
-
-       return 0;
 }