From 903cf07b1abc3d98adb58697b9fb96fdf90f244a Mon Sep 17 00:00:00 2001 From: Guillaume Bougard Date: Wed, 22 Jan 2025 20:47:03 +0100 Subject: [PATCH] fix: Fix typo in ssl-keystore support last update Closes #830 --- lib/GLPI/Agent/HTTP/Client.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/GLPI/Agent/HTTP/Client.pm b/lib/GLPI/Agent/HTTP/Client.pm index 615a48809..cb4f81303 100644 --- a/lib/GLPI/Agent/HTTP/Client.pm +++ b/lib/GLPI/Agent/HTTP/Client.pm @@ -702,7 +702,7 @@ sub _KeyChain_or_KeyStore_Export { } # Always include default CA file from Mozilla::CA - if ($loadMozillaCA && $Mozilla::CA->require()) { + if ($loadMozillaCA && Mozilla::CA->require()) { my $cacert = Mozilla::CA::SSL_ca_file(); push @certs, IO::Socket::SSL::Utils::PEM_file2certs($cacert) if -e $cacert;