> On 4. Aug 2022, at 00:38, Tatsuki Makino <tatsuki_mak...@hotmail.com> wrote:
> Hello.
>
> In git-2.37.1/http.c...
>
> ︙
> if (!curl_ssl_verify) {
> curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
> curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
> } else {
> ︙
> if (getenv("GIT_SSL_NO_VERIFY"))
> curl_ssl_verify = 0;
> ︙
>
> Thus, it was GIT_SSL_NO_VERIFY, not GIT_NO_SSL_VERIFY...
>
Thanks, I simply copy and pasted what the requester used (assuming they already
tested that exact value outside of poudriere), since my response was about the
mechanics of how to get that variable in and not its name.
Cheers
Michael
> Regards.