Fixes compiler warning reported by Andres Freund.
Discusssion: https://www.postgresql.org/message-id/
20240408015055[email protected]
retval = SSL_select_next_proto((unsigned char **) out, outlen,
alpn_protos, sizeof(alpn_protos),
in, inlen);
- if (*out == NULL || *outlen > sizeof(alpn_protos) || outlen <= 0)
+ if (*out == NULL || *outlen > sizeof(alpn_protos) || *outlen <= 0)
return SSL_TLSEXT_ERR_NOACK; /* can't happen */
if (retval == OPENSSL_NPN_NEGOTIATED)