OpenSSL::paramnames: Use less magic perl
authorRichard Levitte <levitte@openssl.org>
Mon, 12 Jun 2023 04:31:25 +0000 (06:31 +0200)
committerPauli <pauli@openssl.org>
Thu, 15 Jun 2023 05:27:04 +0000 (15:27 +1000)
commit3691f1e5567d6b61ed917adf48b40ae95ac5cb17
treec8959e5619d7acee3733b8c9549f1921f48b795c
parenteb4129e12cdf7fe64b3ce352f539e3dbeb1b1321
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@openssl.org>
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21178)
util/perl/OpenSSL/paramnames.pm