Fix sslsni connparam boolean check

Daniel Gustafsson <dgustafsson@postgresql.org>

Commit: ffff00a3556734f859f375b8c76c89f1d2920bcd
Author: Daniel Gustafsson <dgustafsson@postgresql.org>
Date: 2021-08-13T08:32:16Z
Releases: 14.0
Fix sslsni connparam boolean check

The check for sslsni only checked for existence of the parameter
but not for the actual value of the param.  This meant that the
SNI extension was always turned on.  Fix by inspecting the value
of sslsni and only activate the SNI extension iff sslsni has been
enabled.  Also update the docs to be more in line with how other
boolean params are documented.

Backpatch to 14 where sslsni was first implemented.

Reviewed-by: Tom Lane
Backpatch-through: 14, where sslni was added

Files

PathChange+/−
doc/src/sgml/libpq.sgml modified +1 −1
src/interfaces/libpq/fe-secure-openssl.c modified +1 −1

Documentation touched