This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=16409868ada04b12dbee4cd6a3e5c8d4287870f3 commit 16409868ada04b12dbee4cd6a3e5c8d4287870f3 Author: Guillem Jover <[email protected]> AuthorDate: Sat Dec 23 02:37:19 2023 +0100 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()); -- Dpkg.Org's dpkg

