diff options
author | Remi Collet <remi@remirepo.net> | 2025-07-28 07:22:05 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-07-28 07:22:05 +0200 |
commit | c2f3551466aac66174cd666dc8eececd13d98c14 (patch) | |
tree | e9ff2dc866ca0c2673ea23862a9b0a81c914abb7 /php-composer-ca-bundle-rpm.patch | |
parent | 8fb20aaa171f01cc2e42098e5ae6e60a7ae4d308 (diff) |
fix system certificates path rhbz#2383719
Diffstat (limited to 'php-composer-ca-bundle-rpm.patch')
-rw-r--r-- | php-composer-ca-bundle-rpm.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php-composer-ca-bundle-rpm.patch b/php-composer-ca-bundle-rpm.patch index 3dfdc65..04bd4c1 100644 --- a/php-composer-ca-bundle-rpm.patch +++ b/php-composer-ca-bundle-rpm.patch @@ -6,7 +6,7 @@ diff -up ./src/CaBundle.php.rpm ./src/CaBundle.php public static function getBundledCaBundlePath() { - $caBundleFile = __DIR__.'/../res/cacert.pem'; -+ $caBundleFile = '/etc/pki/tls/certs/ca-bundle.crt'; // System CA, always ++ $caBundleFile = '/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem'; // System CA, always // cURL does not understand 'phar://' paths // see https://github.com/composer/ca-bundle/issues/10 |