From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 4 Dec 2025 13:39:52 +0000 (-0500) Subject: Remove unused variable X-Git-Tag: rec-5.4.0-alpha1~25^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16595%2Fhead;p=thirdparty%2Fpdns.git Remove unused variable It was introduced (unused) in b8db58a230959585880e15c097851c5139d90f45 Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/regression-tests.dnsdist/dnscrypt.py b/regression-tests.dnsdist/dnscrypt.py index 7fed0c4050..0153677b20 100644 --- a/regression-tests.dnsdist/dnscrypt.py +++ b/regression-tests.dnsdist/dnscrypt.py @@ -208,7 +208,6 @@ class DNSCryptClient(object): raise Exception("Invalid encrypted response: invalid padding") idx -= 1 - paddingLen = len(cleartextBytes) - idx return cleartext[:idx+1]