git: 9f1314a30b4a - releng/13.3 - fetch: correct env var name for --crl option to work
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 29 Oct 2024 18:57:30 UTC
The branch releng/13.3 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=9f1314a30b4a6f5bcc2c149b8555fce539cc0f11 commit 9f1314a30b4a6f5bcc2c149b8555fce539cc0f11 Author: Franco Fichtner <franco@opnsense.org> AuthorDate: 2024-10-07 09:36:19 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2024-10-29 18:54:58 +0000 fetch: correct env var name for --crl option to work Reviewed by: grembo MFC after: 3 days Security: FreeBSD-SA-24:19.fetch Approved by: so Differential Revision: https://reviews.freebsd.org/D46973 (cherry picked from commit 1d7a33888e09f86feb4c2c9f9640d936be07ce9d) (cherry picked from commit 48472457842226eb3445fd70dd995954020f0cb8) --- usr.bin/fetch/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c index 8be5742386e7..6cf6a31eed2e 100644 --- a/usr.bin/fetch/fetch.c +++ b/usr.bin/fetch/fetch.c @@ -1059,7 +1059,7 @@ main(int argc, char *argv[]) setenv("SSL_CLIENT_KEY_FILE", optarg, 1); break; case OPTION_SSL_CRL_FILE: - setenv("SSL_CLIENT_CRL_FILE", optarg, 1); + setenv("SSL_CRL_FILE", optarg, 1); break; case OPTION_SSL_NO_SSL3: setenv("SSL_NO_SSL3", "", 1);