Connection limiting
[KiwiIRC.git] / server / irc / state.js
index 4b368c173dfb5c7ab77cd39f22a6c5afdc24bc04..4f3f764de839f58e3628dbc495c382e46387d1f1 100755 (executable)
@@ -36,7 +36,7 @@ module.exports = State;
 State.prototype.connect = function (hostname, port, ssl, nick, user, pass, callback) {
     var that = this;
     var con, con_num;
-    
+
     // Check the per-server limit on the number of connections
     if ((global.config.max_server_conns > 0) &&
         (!global.config.restrict_server) &&