diff options
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 741a72d9254..e27ff8c6501 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -30,7 +30,7 @@ #include <sys/types.h> /* for umask() */ #include <sys/stat.h> /* for stat() */ #endif -#ifdef USE_SSL +#ifdef USE_OPENSSL #include <openssl/ssl.h> #endif @@ -1791,7 +1791,7 @@ connection_warnings(bool in_startup) static void printSSLInfo(void) { -#ifdef USE_SSL +#ifdef USE_OPENSSL int sslbits = -1; SSL *ssl; |