From: Anatol Belski Date: Wed, 2 Mar 2016 16:03:20 +0000 (+0100) Subject: show correct MINFO with libpq >= 9.5.x X-Git-Tag: php-5.6.20RC1~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2399c64eaffba559332b54b664b670c46ac471c2;p=php show correct MINFO with libpq >= 9.5.x --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index cb9d03cefb..8f3518d7c2 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1249,7 +1249,7 @@ PHP_MINFO_FUNCTION(pgsql) #else php_info_print_table_row(2, "Multibyte character support", "disabled"); #endif -#ifdef USE_SSL +#if defined(USE_SSL) || defined(USE_OPENSSL) php_info_print_table_row(2, "SSL support", "enabled"); #else php_info_print_table_row(2, "SSL support", "disabled");