[openssl/openssl] 3691f1: OpenSSL::paramnames: Use less magic perl
Richard Levitte
noreply at github.com
Thu Jun 15 05:29:06 UTC 2023
Branch: refs/heads/master
Home: https://github.com/openssl/openssl
Commit: 3691f1e5567d6b61ed917adf48b40ae95ac5cb17
https://github.com/openssl/openssl/commit/3691f1e5567d6b61ed917adf48b40ae95ac5cb17
Author: Richard Levitte <levitte at openssl.org>
Date: 2023-06-15 (Thu, 15 Jun 2023)
Changed paths:
M util/perl/OpenSSL/paramnames.pm
Log Message:
-----------
OpenSSL::paramnames: Use less magic perl
Constructions like $$cursor{whatever} and %$cursor{whatever} were ambiguous
in some perl versions, and it's still better to use the arrow syntax for the
way we use them, i.e. they can both be replaced with $cursor->{whatever}.
Fixes #21152
Fixes #21172
Reviewed-by: Tomas Mraz <tomas at openssl.org>
Reviewed-by: Bernd Edlinger <bernd.edlinger at hotmail.de>
Reviewed-by: Paul Dale <pauli at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21178)
More information about the openssl-commits
mailing list