From: Art Cancro Date: Sun, 10 Apr 2016 20:31:58 +0000 (-0400) Subject: fixed old coding style X-Git-Tag: Release_902~56 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=a30e1b6339b619f881b8407222d24fa1f80e0dc1 fixed old coding style --- diff --git a/citadel/modules/test/serv_test.c b/citadel/modules/test/serv_test.c index 999b85fdb..32d94c047 100644 --- a/citadel/modules/test/serv_test.c +++ b/citadel/modules/test/serv_test.c @@ -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. @@ -42,25 +42,23 @@ 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"; }