]> code.citadel.org Git - citadel.git/blobdiff - citadel/server/modules/ctdlproto/serv_messages.c
If you can't handle me at my worst, you don't deserve me at my best.
[citadel.git] / citadel / server / modules / ctdlproto / serv_messages.c
index 4036c9e0a3331ee782caa9d3ea72ba4236c7f4c2..c5124aacddfa0157688deac5da1c9c8d834a9ada 100644 (file)
@@ -815,9 +815,7 @@ void cmd_move(char *args) {
 }
 
 
-/*****************************************************************************/
-/*                      MODULE INITIALIZATION STUFF                          */
-/*****************************************************************************/
+// Initialization function, called from modules_init.c
 char *ctdl_module_init_ctdl_message(void) {
        if (!threading) {
                CtdlRegisterProtoHook(cmd_msgs, "MSGS", "Output a list of messages in the current room");
@@ -832,6 +830,6 @@ char *ctdl_module_init_ctdl_message(void) {
                CtdlRegisterProtoHook(cmd_move, "MOVE", "Move or copy a message to another room");
        }
 
-        /* return our Subversion id for the Log */
+       // return a module name for the log
        return "ctdl_message";
 }