From: Remco Rijnders Date: Thu, 15 Jun 2017 07:37:26 +0000 (+0200) Subject: chkconf will now recognise E-lines (CONF_DCCBLOCK) and no longer report an error... X-Git-Url: http://git.serene-ircd.net/?a=commitdiff_plain;h=dea672cddd58d308b6c8c0f0046c6f0383bbcf33;p=serene-ircd.git chkconf will now recognise E-lines (CONF_DCCBLOCK) and no longer report an error on them. --- diff --git a/src/chkconf.c b/src/chkconf.c index 09ba13e..79eb84a 100644 --- a/src/chkconf.c +++ b/src/chkconf.c @@ -218,6 +218,9 @@ static aConfItem *initconf (opt) ccount++; aconf->status = CONF_CONNECT_SERVER; break; + case 'E': /* Blocked DCC file type */ + aconf->status = CONF_DCCBLOCK; + break; case 'f': /* Temp Z-line time */ case 'F': aconf->status = CONF_ZTIME;