From dea672cddd58d308b6c8c0f0046c6f0383bbcf33 Mon Sep 17 00:00:00 2001 From: Remco Rijnders Date: Thu, 15 Jun 2017 09:37:26 +0200 Subject: [PATCH] chkconf will now recognise E-lines (CONF_DCCBLOCK) and no longer report an error on them. --- src/chkconf.c | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.30.2