diff options
Diffstat (limited to 'ext/mysqlnd/mysqlnd_ext_plugin.c')
| -rw-r--r-- | ext/mysqlnd/mysqlnd_ext_plugin.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/mysqlnd/mysqlnd_ext_plugin.c b/ext/mysqlnd/mysqlnd_ext_plugin.c index 5f5bfbb11b..b17c80f190 100644 --- a/ext/mysqlnd/mysqlnd_ext_plugin.c +++ b/ext/mysqlnd/mysqlnd_ext_plugin.c @@ -13,7 +13,7 @@ | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Andrey Hristov <andrey@php.net> | - | Johannes Schlüter <johannes@php.net> | + | Johannes Schlüter <johannes@php.net> | | Ulf Wendel <uw@php.net> | +----------------------------------------------------------------------+ */ @@ -362,19 +362,19 @@ _mysqlnd_vio_set_methods(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_vio) * methods) /* {{{ mysqlnd_command_factory_get */ -static func_mysqlnd__command_factory +static func_mysqlnd__run_command _mysqlnd_command_factory_get() { - return mysqlnd_command_factory; + return mysqlnd_run_command; } /* }}} */ /* {{{ mysqlnd_command_factory_set */ static void -_mysqlnd_command_factory_set(func_mysqlnd__command_factory factory) +_mysqlnd_command_factory_set(func_mysqlnd__run_command run_command) { - mysqlnd_command_factory = factory; + mysqlnd_run_command = run_command; } /* }}} */ |
