From: Remi Gacogne Date: Fri, 1 Dec 2023 13:30:23 +0000 (+0100) Subject: tcpreceiver: Remove a spurious whitespace spotted by Otto X-Git-Tag: rec-5.0.0-rc1~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdf0fe6ebf957b02f67474b8dae13ab16186f408;p=thirdparty%2Fpdns.git tcpreceiver: Remove a spurious whitespace spotted by Otto Co-authored-by: Otto Moerbeek --- diff --git a/pdns/tcpreceiver.cc b/pdns/tcpreceiver.cc index 2ea87fbf7c..30d99488a8 100644 --- a/pdns/tcpreceiver.cc +++ b/pdns/tcpreceiver.cc @@ -203,7 +203,7 @@ static bool maxConnectionDurationReached(unsigned int maxConnectionDuration, tim return true; } if (elapsed > 0) { - remainingTime = static_cast(maxConnectionDuration - elapsed); + remainingTime = static_cast(maxConnectionDuration - elapsed); } } return false;