Re: [Libguestfs] [PATCH v2] curl: Fix verification of CURLOPT_TLS13_CIPHERS

2022-11-10 Thread Richard W.M. Jones
On Thu, Nov 10, 2022 at 05:17:35PM +0100, Michal Orzel wrote: > The code checking for CURLOPT_TLS13_CIPHERS option did not work > properly, because of incorrect assumption that this symbol was a > preprocessor macro. It is in fact element of enum type, which > resulted with #ifdef directive

[Libguestfs] [PATCH v2] curl: Fix verification of CURLOPT_TLS13_CIPHERS

2022-11-10 Thread Michal Orzel
The code checking for CURLOPT_TLS13_CIPHERS option did not work properly, because of incorrect assumption that this symbol was a preprocessor macro. It is in fact element of enum type, which resulted with #ifdef directive working improperly. Fix changes that check to be based on curl version