quiche: fix build error with --with-ca-fallback

- Fix build error when curl is built with --with-quiche
  and --with-ca-fallback.

- Add --with-ca-fallback to the quiche CI job.

Fixes https://github.com/curl/curl/issues/11850
Closes https://github.com/curl/curl/pull/11847
This commit is contained in:
Junho Choi 2023-09-14 10:13:11 +09:00 committed by Jay Satiro
parent 7a2421dbb7
commit 267e14f1ba
2 changed files with 2 additions and 1 deletions

View File

@ -72,6 +72,7 @@ jobs:
--enable-debug
--with-quiche=/home/runner/quiche/target/release
--with-test-nghttpx="$HOME/nghttpx/bin/nghttpx"
--with-ca-fallback
steps:
- run: |

View File

@ -165,7 +165,7 @@ static CURLcode quic_x509_store_setup(struct Curl_cfilter *cf,
else {
/* verifying the peer without any CA certificates won't work so
use openssl's built-in default as fallback */
SSL_CTX_set_default_verify_paths(ssl_ctx);
SSL_CTX_set_default_verify_paths(ctx->sslctx);
}
#endif
}