]> jfr.im git - solanum.git/blobdiff - modules/m_motd.c
Move m_locops module to extensions.
[solanum.git] / modules / m_motd.c
index ffe27f3fdb23de4af8e3ec202612391a1c2d38b2..feca390c2c1ba20061923f59bbcc9987268fa8f2 100644 (file)
@@ -20,8 +20,6 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  *  USA
- *
- *  $Id: m_motd.c 254 2005-09-21 23:35:12Z nenolod $
  */
 
 #include "stdinc.h"
 #include "cache.h"
 #include "ratelimit.h"
 
-static int m_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
-static int mo_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static const char motd_desc[] = "Provides the MOTD command to view the Message of the Day";
+
+static void m_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static void mo_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 struct Message motd_msgtab = {
        "MOTD", 0, 0, 0, 0,
@@ -54,7 +54,7 @@ mapi_hlist_av1 motd_hlist[] = {
        { NULL, NULL }
 };
 
-DECLARE_MODULE_AV1(motd, NULL, NULL, motd_clist, motd_hlist, NULL, "$Revision: 254 $");
+DECLARE_MODULE_AV2(motd, NULL, NULL, motd_clist, motd_hlist, NULL, NULL, NULL, motd_desc);
 
 static void motd_spy(struct Client *);
 
@@ -62,7 +62,7 @@ static void motd_spy(struct Client *);
 ** m_motd
 **      parv[1] = servername
 */
-static int
+static void
 m_motd(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        static time_t last_used = 0;
@@ -74,34 +74,30 @@ m_motd(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p
                           me.name, source_p->name, "MOTD");
                sendto_one(source_p, form_str(RPL_ENDOFMOTD),
                           me.name, source_p->name);
-               return 0;
+               return;
        }
        else
                last_used = rb_current_time();
 
        if(hunt_server(client_p, source_p, ":%s MOTD :%s", 1, parc, parv) != HUNTED_ISME)
-               return 0;
+               return;
 
        motd_spy(source_p);
        send_user_motd(source_p);
-
-       return 0;
 }
 
 /*
 ** mo_motd
 **      parv[1] = servername
 */
-static int
+static void
 mo_motd(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 MOTD :%s", 1, parc, parv) != HUNTED_ISME)
-               return 0;
+               return;
 
        motd_spy(source_p);
        send_user_motd(source_p);
-
-       return 0;
 }
 
 /* motd_spy()