diff options
author | Andrey Hristov <andrey@php.net> | 2010-04-15 11:01:30 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-04-15 11:01:30 +0000 |
commit | c04f752625f76742d5b75e2b5de047564fc51e45 (patch) | |
tree | 3e7c634ce9587df05e9f64d168e37a4f8c7922a6 /ext/mysqlnd/php_mysqlnd.c | |
parent | 29aff0a5955add350d2312dd8609c730b8470111 (diff) | |
download | php-git-c04f752625f76742d5b75e2b5de047564fc51e45.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.c | 6 |
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)); |