From 16409868ada04b12dbee4cd6a3e5c8d4287870f3 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Sat, 23 Dec 2023 02:37:19 +0100 Subject: [PATCH] Dpkg::OpenPGP::Backend: Remove unused strict_verify option This option is a leftover from a previous implementation, and is not used anywhere now. --- scripts/Dpkg/OpenPGP/Backend.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/Dpkg/OpenPGP/Backend.pm b/scripts/Dpkg/OpenPGP/Backend.pm index 7d8bd8177..52be10edd 100644 --- a/scripts/Dpkg/OpenPGP/Backend.pm +++ b/scripts/Dpkg/OpenPGP/Backend.pm @@ -64,9 +64,7 @@ sub new { my ($this, %opts) = @_; my $class = ref($this) || $this; - my $self = { - strict_verify => $opts{strict_verify} // 1, - }; + my $self = {}; bless $self, $class; $self->{cmdv} = _detect_cmd($opts{cmdv}, $self->DEFAULT_CMDV()); -- 2.11.4.GIT