diff options
author | Zeev Suraski <zeev@php.net> | 2001-12-15 17:09:37 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-12-15 17:09:37 +0000 |
commit | 9590c5173c6f08b132f90b71d40d48010d223edf (patch) | |
tree | 67d247a2659fa69170226cf4d321c21df9ca7c8f /ext/mysql/php_mysql.c | |
parent | 64a857c52ed7edaa277abc098744fedc59393828 (diff) | |
download | php-git-9590c5173c6f08b132f90b71d40d48010d223edf.tar.gz |
Fix bug #13456 - I'm unable to actually test it
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index cf9aa614e1..804b7fa32f 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -98,7 +98,7 @@ static int le_result, le_link, le_plink; #define MYSQL_USE_RESULT 0 #define MYSQL_STORE_RESULT 1 -#if MYSQL_VERSION_ID < 32224 +#if MYSQL_VERSION_ID < 32223 #define PHP_MYSQL_VALID_RESULT(mysql) \ (mysql_num_fields(mysql)>0) #else |