summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/php_mysqlnd.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2010-04-15 11:01:30 +0000
committerAndrey Hristov <andrey@php.net>2010-04-15 11:01:30 +0000
commitdd9fc198ce446f7edd95707524209baa9a74bfd6 (patch)
treedadb520eb0e0c213069bc8ccd32cc5cf010084cc /ext/mysqlnd/php_mysqlnd.c
parent2404c4c84f431ec5b1106faa99056533739c3854 (diff)
downloadphp-git-dd9fc198ce446f7edd95707524209baa9a74bfd6.tar.gz
Fix for bug#49234 method not found ssl_set
Patch was tested and compiles on Windows. (Thanks Kalle)
Diffstat (limited to 'ext/mysqlnd/php_mysqlnd.c')
-rw-r--r--ext/mysqlnd/php_mysqlnd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/mysqlnd/php_mysqlnd.c b/ext/mysqlnd/php_mysqlnd.c
index 1ad5b4e253..431ee4d3ef 100644
--- a/ext/mysqlnd/php_mysqlnd.c
+++ b/ext/mysqlnd/php_mysqlnd.c
@@ -108,6 +108,12 @@ PHP_MINFO_FUNCTION(mysqlnd)
#else
"not supported");
#endif
+ php_info_print_table_row(2, "SSL",
+#ifdef MYSQLND_SSL_SUPPORTED
+ "supported");
+#else
+ "not supported");
+#endif
snprintf(buf, sizeof(buf), "%ld", MYSQLND_G(net_cmd_buffer_size));
php_info_print_table_row(2, "Command buffer size", buf);
snprintf(buf, sizeof(buf), "%ld", MYSQLND_G(net_read_buffer_size));