fixed old coding style
authorArt Cancro <ajc@citadel.org>
Sun, 10 Apr 2016 20:31:58 +0000 (16:31 -0400)
committerArt Cancro <ajc@citadel.org>
Sun, 10 Apr 2016 20:31:58 +0000 (16:31 -0400)
citadel/modules/test/serv_test.c

index 999b85fdbce58d0222fc3700cf5e58bb958a0ca5..32d94c04717d47763702057ed6a159a534a6ac02 100644 (file)
@@ -2,7 +2,7 @@
  * This is an empty skeleton of a Citadel server module, included to demonstrate
  * how to add a new module to the system and how to activate it in the server.
  * 
- * Copyright (c) 1998-2012 by the citadel.org team
+ * Copyright (c) 1998-2016 by the citadel.org team
  *
  * This program is open source software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 3.
 
 void CleanupTest(void) {
        syslog(LOG_DEBUG, "--- test of adding an unload hook --- \n");
-       }
+}
 
 void NewRoomTest(void) {
        syslog(LOG_DEBUG, "--- test module was told we're now in a new room ---\n");
-       }
+}
 
 void SessionStartTest(void) {
-       syslog(LOG_DEBUG, "--- starting up session %d ---\n",
-               CC->cs_pid);
-       }
+       syslog(LOG_DEBUG, "--- starting up session %d ---\n", CC->cs_pid);
+}
 
 void SessionStopTest(void) {
-       syslog(LOG_DEBUG, "--- ending session %d ---\n", 
-               CC->cs_pid);
-       }
+       syslog(LOG_DEBUG, "--- ending session %d ---\n", CC->cs_pid);
+}
 
 void LoginTest(void) {
        syslog(LOG_DEBUG, "--- Hello, %s ---\n", CC->curr_user);
-       }
+}
 
 /* To insert this module into the server activate the next block by changing the #if 0 to #if 1 */
 CTDL_MODULE_INIT(test)
@@ -76,6 +74,6 @@ CTDL_MODULE_INIT(test)
        }
 #endif
 
-   /* return our module name for the log */
-   return "test";
+/* return our module name for the log */
+return "test";
 }