diff options
author | Anatol Belski <ab@php.net> | 2014-12-14 14:22:42 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-14 14:22:42 +0100 |
commit | 7b6ed8db2fa1574cffabde7a8bc9fdc277304528 (patch) | |
tree | 1380358aab5eae4d514ed58d47e6344ad3bc3d92 /ext/mysqlnd/mysqlnd.c | |
parent | e112f6a04e0cddc6276c426c09c0249201878f5a (diff) | |
download | php-git-7b6ed8db2fa1574cffabde7a8bc9fdc277304528.tar.gz |
almost all the replacements of TSRMLS_* are done
Some places have to be yet touched as they use different/custom
macros namings for the same. Also some places in the code became
redundant now, this is the next task. To name some: ext/mysqlnd,
sapi/embed, ext/curl and some smaller places here and there.
Diffstat (limited to 'ext/mysqlnd/mysqlnd.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/mysqlnd/mysqlnd.c b/ext/mysqlnd/mysqlnd.c index 881c1ae2fd..3da185ae29 100644 --- a/ext/mysqlnd/mysqlnd.c +++ b/ext/mysqlnd/mysqlnd.c @@ -440,9 +440,7 @@ mysqlnd_switch_to_ssl_if_needed( MYSQLND_CONN_DATA * conn, const MYSQLND_PACKET_GREET * const greet_packet, const MYSQLND_OPTIONS * const options, - zend_ulong mysql_flags - TSRMLS_DC - ) + zend_ulong mysql_flags) { enum_func_status ret = FAIL; const MYSQLND_CHARSET * charset; |