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 | dd9fc198ce446f7edd95707524209baa9a74bfd6 (patch) | |
tree | dadb520eb0e0c213069bc8ccd32cc5cf010084cc /ext/mysqli/mysqli_api.c | |
parent | 2404c4c84f431ec5b1106faa99056533739c3854 (diff) | |
download | php-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/mysqli/mysqli_api.c')
-rw-r--r-- | ext/mysqli/mysqli_api.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 6162cce92b..651bdeacab 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -2121,7 +2121,6 @@ PHP_FUNCTION(mysqli_sqlstate) /* {{{ proto bool mysqli_ssl_set(object link ,string key ,string cert ,string ca ,string capath ,string cipher]) U */ -#if !defined(MYSQLI_USE_MYSQLND) PHP_FUNCTION(mysqli_ssl_set) { MY_MYSQL *mysql; @@ -2144,7 +2143,6 @@ PHP_FUNCTION(mysqli_ssl_set) RETURN_TRUE; } -#endif /* }}} */ /* {{{ proto mixed mysqli_stat(object link) |