diff options
author | Thomas Orozco <thomas@orozco.fr> | 2016-06-09 10:45:40 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-03-09 17:31:21 +0100 |
commit | 247ce052cd0fc7d0d8ea1a0e7ea2075e9601766a (patch) | |
tree | d527d9e76fbe58112b32b561685202a518759c61 /ext/pdo_mysql/php_pdo_mysql_int.h | |
parent | b224e7426713befd7449117afd68355231f9077e (diff) | |
download | php-git-247ce052cd0fc7d0d8ea1a0e7ea2075e9601766a.tar.gz |
Fixed bug #71003: Add PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT
Diffstat (limited to 'ext/pdo_mysql/php_pdo_mysql_int.h')
-rw-r--r-- | ext/pdo_mysql/php_pdo_mysql_int.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pdo_mysql/php_pdo_mysql_int.h b/ext/pdo_mysql/php_pdo_mysql_int.h index f300e044ba..89884120ab 100644 --- a/ext/pdo_mysql/php_pdo_mysql_int.h +++ b/ext/pdo_mysql/php_pdo_mysql_int.h @@ -179,6 +179,9 @@ enum { PDO_MYSQL_ATTR_SERVER_PUBLIC_KEY, #endif PDO_MYSQL_ATTR_MULTI_STATEMENTS, +#ifdef PDO_USE_MYSQLND + PDO_MYSQL_ATTR_SSL_VERIFY_SERVER_CERT, +#endif }; #endif |