]> jfr.im git - solanum.git/blobdiff - src/restart.c
ssld: use uint64_t explicitly when we want 64-bit counters
[solanum.git] / src / restart.c
index ada978cf12e280112c81dbf16d8a4c40a69aa940..5bf39f564938a685827ed7e3edaa5e37d2a250cb 100644 (file)
@@ -30,7 +30,7 @@
 #include "send.h"
 #include "logger.h"
 #include "s_conf.h"
-#include "client.h"            
+#include "client.h"
 #include "ircd_signal.h"
 
 /* external var */
@@ -45,9 +45,6 @@ restart(const char *mesg)
                abort();
        was_here = YES;
 
-#if 0
-       ilog(L_MAIN, "Restarting Server because: %s, memory data limit: %ld", mesg, get_maxrss());
-#endif
        ilog(L_MAIN, "Restarting Server because: %s", mesg);
 
        server_reboot();
@@ -62,10 +59,10 @@ server_reboot(void)
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "Restarting server...");
 
        ilog(L_MAIN, "Restarting server...");
-       
+
        /*
         * XXX we used to call flush_connections() here. But since this routine
-        * doesn't exist anymore, we won't be flushing. This is ok, since 
+        * doesn't exist anymore, we won't be flushing. This is ok, since
         * when close handlers come into existance, rb_close() will be called
         * below, and the data flushing will be implicit.
         *    -- adrian