`GNUTLS_ENABLED` was checked twice in the HTTPS-proxy support block,
making the second check redundant.
- also fix the "or upper" phrasing which is hard to understand
Pointed out by the GitHub AI thing
Closes #22307
test "$GNUTLS_ENABLED" = "1" ||
test "$RUSTLS_ENABLED" = "1" ||
test "$SCHANNEL_ENABLED" = "1" ||
- test "$GNUTLS_ENABLED" = "1" ||
test "$MBEDTLS_ENABLED" = "1"; then
SUPPORT_FEATURES="$SUPPORT_FEATURES HTTPS-proxy"
AC_MSG_RESULT([yes])
#endif
]])
],[],[
- AC_MSG_ERROR([OpenSSL 3.0.0 or upper required.])
+ AC_MSG_ERROR([OpenSSL 3.0.0 or later required.])
])
fi
fi