diff options
author | Andrey Hristov <andrey@php.net> | 2015-10-02 14:43:37 +0200 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2015-11-12 16:19:16 +0100 |
commit | 3091a01799634681b52bc859684656c376b5fadd (patch) | |
tree | 6955755b3d2a5a9715f7795686f623d10f38ee46 /ext/mysqlnd/mysqlnd.c | |
parent | 6051a477762c030dfdc7f2bf4cfecd2a54d0ab2a (diff) | |
download | php-git-3091a01799634681b52bc859684656c376b5fadd.tar.gz |
MNDR
- mysqlnd_option -> mysqlnd_client_option
Diffstat (limited to 'ext/mysqlnd/mysqlnd.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqlnd/mysqlnd.c b/ext/mysqlnd/mysqlnd.c index 812380000a..a68ed66511 100644 --- a/ext/mysqlnd/mysqlnd.c +++ b/ext/mysqlnd/mysqlnd.c @@ -2321,7 +2321,7 @@ end: /* {{{ mysqlnd_conn_data::set_client_option */ static enum_func_status MYSQLND_METHOD(mysqlnd_conn_data, set_client_option)(MYSQLND_CONN_DATA * const conn, - enum mysqlnd_option option, + enum_mysqlnd_client_option option, const char * const value ) { @@ -2491,7 +2491,7 @@ end: /* {{{ mysqlnd_conn_data::set_client_option_2d */ static enum_func_status MYSQLND_METHOD(mysqlnd_conn_data, set_client_option_2d)(MYSQLND_CONN_DATA * const conn, - enum mysqlnd_option option, + enum_mysqlnd_client_option option, const char * const key, const char * const value ) |