Re: Fix use of openssl.path() if openssl isn't found

Tristan Partin <tristan@neon.tech>

From: "Tristan Partin" <tristan@neon.tech>
To: "Michael Paquier" <michael@paquier.xyz>
Cc: "pgsql-hackers" <pgsql-hackers@postgresql.org>
Date: 2023-11-08T15:59:40Z
Lists: pgsql-hackers
On Wed Nov 8, 2023 at 2:31 AM CST, Michael Paquier wrote:
> On Wed, Nov 08, 2023 at 12:07:49AM -0600, Tristan Partin wrote:
> >        'with_ssl': ssl_library,
> > -      'OPENSSL': openssl.path(),
> > +      'OPENSSL': openssl.found() ? openssl.path : '',
>
> Except that this was incorrect.  I've fixed the grammar and applied
> that down to 16.

Coding at 12 in the morning is never conducive to coherent thought :). 
Thanks. Sorry for the trouble.

-- 
Tristan Partin
Neon (https://neon.tech)



Commits

  1. Fix use of OPENSSL in SSL tests if command is not found