diff options
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r-- | src/backend/utils/init/postinit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 28243ad58f9..a5b98217739 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -231,8 +231,8 @@ PerformAuthentication(Port *port) { if (am_walsender) { -#ifdef USE_SSL - if (port->ssl) +#ifdef USE_OPENSSL + if (port->ssl_in_use) ereport(LOG, (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), @@ -245,8 +245,8 @@ PerformAuthentication(Port *port) } else { -#ifdef USE_SSL - if (port->ssl) +#ifdef USE_OPENSSL + if (port->ssl_in_use) ereport(LOG, (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), |