diff options
| author | Andrey Hristov <andrey@php.net> | 2010-08-25 15:02:02 +0000 |
|---|---|---|
| committer | Andrey Hristov <andrey@php.net> | 2010-08-25 15:02:02 +0000 |
| commit | 721f6dae57a79ce8e022e811d8cdb24b6c605123 (patch) | |
| tree | fcb1a0c627f8ccb5b21860803df77c47b2701772 | |
| parent | d663b9cc774f0667203c383da5c6408b68209086 (diff) | |
| download | php-git-721f6dae57a79ce8e022e811d8cdb24b6c605123.tar.gz | |
fix the build. two mysqli functions were missing after
recent commit - set_charset and get_charset
| -rw-r--r-- | ext/mysqli/mysqli_fe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mysqli/mysqli_fe.c b/ext/mysqli/mysqli_fe.c index ad82cbb372..4ae8cf5e32 100644 --- a/ext/mysqli/mysqli_fe.c +++ b/ext/mysqli/mysqli_fe.c @@ -31,6 +31,7 @@ #include "ext/standard/info.h" #include "php_mysqli_structs.h" #include "mysqli_fe.h" +#include "mysqli_priv.h" #if PHP_VERSION_ID >= 50400 #define MYSQLI_ZEND_ARG_OBJ_INFO_LINK() ZEND_ARG_OBJ_INFO(0, link, mysqli, 0) |
