diff options
author | Antony Dovgal <tony2001@php.net> | 2007-10-12 07:23:44 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-10-12 07:23:44 +0000 |
commit | cb6053bd559825cd910dc9fd6c3e1022b6e83be2 (patch) | |
tree | 25412a3bf9655162e45f1a233043bd1066e1ffc4 | |
parent | bc9b36b3637feb024a1ca486b3f90a2d6c628f09 (diff) | |
download | php-git-cb6053bd559825cd910dc9fd6c3e1022b6e83be2.tar.gz |
fix typo
-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 8461f27ea8..f2acbff75b 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -1989,7 +1989,7 @@ PHP_FUNCTION(mysql_num_fields) #else #define IS_BINARY_DATA(f) (((f)->type == MYSQL_TYPE_TINY_BLOB || (f)->type == MYSQL_TYPE_BLOB || \ (f)->type == MYSQL_TYPE_MEDIUM_BLOB || (f)->type == MYSQL_TYPE_LONG_BLOB || \ - (f)->type == MYSQL_TYPE_VAR_STRING || \ (f)->type == MYSQL_TYPE_VARCHAR || \ + (f)->type == MYSQL_TYPE_VAR_STRING || (f)->type == MYSQL_TYPE_VARCHAR || \ (f)->type == MYSQL_TYPE_STRING)&& (f)->charsetnr == MYSQL_BINARY_CHARSET_NR) #endif |