diff options
author | Xinchen Hui <laruence@php.net> | 2014-06-23 17:10:25 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-06-23 17:10:25 +0800 |
commit | 64c6b9bd5873240c53d803399ee8a8a0ad962dbf (patch) | |
tree | fbf702f8af02999ae28d194db22889e8259e8e0e | |
parent | b42f0ce5c4decd2b9f8c2b4c0e80dcb22e468556 (diff) | |
download | php-git-64c6b9bd5873240c53d803399ee8a8a0ad962dbf.tar.gz |
typo
-rw-r--r-- | ext/mysqlnd/mysqlnd_net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqlnd/mysqlnd_net.c b/ext/mysqlnd/mysqlnd_net.c index 215ee08c21..0890b73424 100644 --- a/ext/mysqlnd/mysqlnd_net.c +++ b/ext/mysqlnd/mysqlnd_net.c @@ -132,7 +132,7 @@ MYSQLND_METHOD(mysqlnd_net, open_pipe)(MYSQLND_NET * const net, const char * con /* Streams are not meant for C extensions! Thus we need a hack. Every connected stream will be registered as resource (in EG(regular_list). So far, so good. However, it won't be - unregistered yntil the script ends. So, we need to take care of that. + unregistered until the script ends. So, we need to take care of that. */ origin_dtor = EG(regular_list).pDestructor; EG(regular_list).pDestructor = NULL; @@ -226,7 +226,7 @@ MYSQLND_METHOD(mysqlnd_net, open_tcp_or_unix)(MYSQLND_NET * const net, const cha /* Streams are not meant for C extensions! Thus we need a hack. Every connected stream will be registered as resource (in EG(regular_list). So far, so good. However, it won't be - unregistered yntil the script ends. So, we need to take care of that. + unregistered until the script ends. So, we need to take care of that. */ origin_dtor = EG(regular_list).pDestructor; EG(regular_list).pDestructor = NULL; |