From: Remi Gacogne Date: Wed, 23 Sep 2020 08:31:36 +0000 (+0200) Subject: rec: Fix a typo in a comment X-Git-Tag: auth-4.4.0-alpha1~11^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebcde9cbc9e1239157963e581327cdacde3a862f;p=thirdparty%2Fpdns.git rec: Fix a typo in a comment Co-authored-by: Otto Moerbeek --- diff --git a/pdns/pdns_recursor.cc b/pdns/pdns_recursor.cc index 4553101703..ddcdc9db76 100644 --- a/pdns/pdns_recursor.cc +++ b/pdns/pdns_recursor.cc @@ -1915,7 +1915,7 @@ static void startDoResolve(void *p) t_fdm->setReadTTD(dc->d_socket, ttd, g_tcpTimeout); } catch (const FDMultiplexerException &) { - // but the FD was removed because of a timeout while we were sending a response, + // but if the FD was removed because of a timeout while we were sending a response, // we need to re-arm it. If it was an error it will error again. ttd.tv_sec += g_tcpTimeout; t_fdm->addReadFD(dc->d_socket, handleRunningTCPQuestion, dc->d_tcpConnection, &ttd);