From 34b88b65713bdc5b4c02aee31fcf1035a005735b Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sat, 2 Apr 2016 03:19:45 -0500 Subject: [PATCH] ircd: conf: properly calculate the number of wsockd to start --- ircd/s_conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/s_conf.c b/ircd/s_conf.c index 7a914ed48..42e9e1f3d 100644 --- a/ircd/s_conf.c +++ b/ircd/s_conf.c @@ -878,7 +878,7 @@ validate_conf(void) if(ServerInfo.wsockd_count > get_wsockd_count()) { - int start = ServerInfo.wsockd_count - get_ssld_count(); + int start = ServerInfo.wsockd_count - get_wsockd_count(); start_wsockd(start); }