commit 585bf50bdd9ffc1b7c07b65e500a19bf50fbddff Author: Jacob Champion Date: Fri Mar 25 15:36:09 2022 -0700 squash! Enable SSL library detection via PQsslAttribute() Move new docs out of a Note into the main body. diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 82f3092715..aa400d1b7c 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -2538,17 +2538,6 @@ const char *PQsslAttribute(const PGconn *conn, const char *attribute_name); Name of the SSL implementation in use. (Currently, only "OpenSSL" is implemented) - - - As a special case, the library attribute may be - queried without an existing connection by passing NULL as the - conn argument. The historical behavior was to - return NULL for any attribute when a NULL conn - was provided; client programs needing to differentiate between the - newer and older implementations may check the - LIBPQ_HAS_SSL_LIBRARY_DETECTION feature macro. - - @@ -2592,6 +2581,16 @@ const char *PQsslAttribute(const PGconn *conn, const char *attribute_name); + + + As a special case, the library attribute may be + queried without an existing connection by passing NULL as the + conn argument. The historical behavior was to return + NULL for any attribute when a NULL conn was provided; + client programs needing to differentiate between the newer and older + implementations may check the + LIBPQ_HAS_SSL_LIBRARY_DETECTION feature macro. +