From 746dcc7e87ee90dcfbac477a204120ee0150b0a0 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Mon, 5 Aug 2019 21:30:31 +0000 Subject: [PATCH] Fix typo in prev. commit --- exec/ircd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/ircd.js b/exec/ircd.js index 2449fcae27..8c4c7f7f8d 100644 --- a/exec/ircd.js +++ b/exec/ircd.js @@ -857,7 +857,7 @@ function create_new_socket(port) { log(LOG_DEBUG,"Creating new socket object on port " + port); if (js.global.ConnectedSocket != undefined) { newsock = new ListeningSocket(server.interface_ip_address, port, "IRCd"); - log(format("IRC server socket bound to TCP port " + port); + log(format("IRC server socket bound to TCP port " + port)); } else { newsock = new Socket(); -- GitLab