PHP :: Bug #28100 :: mysql_ssl_set() broken
| 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
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2004-06-05 20:32 UTC] georg@php.net