php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #28100 mysql_ssl_set() broken
Submitted: 2004-04-22 01:30 UTC Modified: 2004-06-05 20:32 UTC
From: adam at trachtenberg dot com Assigned: georg (profile)
Status: Closed Package: MySQL related
PHP Version: 5CVS-2004-04-22 (dev) OS: *
Private report: No CVE-ID: None
 [2004-04-22 01:30 UTC] adam at trachtenberg dot com
Description:
------------
The MySQLi mysqli_ssl_set() function is broken because 
it doesn't convert empty strings into NULLs, which is 
what the MySQL C client library function mysql_ssl_set() 
wants.

This patch fixes this bug:

http://www.trachtenberg.com/patches/mysql_ssl_set.txt

Reproduce code:
---------------
$db = mysqli_init();
mysqli_ssl_set($db, 'client-key.pem', 'client-cert.pem', 'cacert.pem', NULL, NULL);

mysqli_real_connect($db, 'localhost', 'foo', 'bar', 'baz');

Expected result:
----------------
Sucessful connection.

Actual result:
--------------
PHP Warning:  mysqli_real_connect(): SSL connection 
error

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-06-05 20:32 UTC] georg@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 04:01:31 2024 UTC