diff options
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r-- | src/backend/utils/init/postinit.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index ed936d7fad8..28243ad58f9 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -234,8 +234,9 @@ PerformAuthentication(Port *port) #ifdef USE_SSL if (port->ssl) ereport(LOG, - (errmsg("replication connection authorized: user=%s SSL enabled (protocol=%s, cipher=%s)", - port->user_name, SSL_get_version(port->ssl), SSL_get_cipher(port->ssl)))); + (errmsg("replication connection authorized: user=%s SSL enabled (protocol=%s, cipher=%s, compression=%s)", + port->user_name, SSL_get_version(port->ssl), SSL_get_cipher(port->ssl), + SSL_get_current_compression(port->ssl) ? _("on") : _("off")))); else #endif ereport(LOG, @@ -247,8 +248,9 @@ PerformAuthentication(Port *port) #ifdef USE_SSL if (port->ssl) ereport(LOG, - (errmsg("connection authorized: user=%s database=%s SSL enabled (protocol=%s, cipher=%s)", - port->user_name, port->database_name, SSL_get_version(port->ssl), SSL_get_cipher(port->ssl)))); + (errmsg("connection authorized: user=%s database=%s SSL enabled (protocol=%s, cipher=%s, compression=%s)", + port->user_name, port->database_name, SSL_get_version(port->ssl), SSL_get_cipher(port->ssl), + SSL_get_current_compression(port->ssl) ? _("on") : _("off")))); else #endif ereport(LOG, |