diff options
author | Andrey Hristov <andrey@php.net> | 2010-04-20 19:09:56 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-04-20 19:09:56 +0000 |
commit | f2d23c7f375c5ab70366ed7b57a50ce11bc45d4b (patch) | |
tree | 8596cca080b4e62a64a7d1456cd58ebd042c9ab5 /ext/mysqlnd/mysqlnd_wireprotocol.c | |
parent | eda9959e3631be741979b09ca6d82e07f6545ddd (diff) | |
download | php-git-f2d23c7f375c5ab70366ed7b57a50ce11bc45d4b.tar.gz |
put the trigger in the right place
Diffstat (limited to 'ext/mysqlnd/mysqlnd_wireprotocol.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_wireprotocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c index 650ce38f96..252c7f18c3 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.c +++ b/ext/mysqlnd/mysqlnd_wireprotocol.c @@ -1689,11 +1689,11 @@ php_mysqlnd_chg_user_read(void *_packet, MYSQLND *conn TSRMLS_DC) if (packet->header.size == 1 && buf[0] == EODATA_MARKER && packet->server_capabilities & CLIENT_SECURE_CONNECTION) { /* We don't handle 3.23 authentication */ + packet->server_asked_323_auth = TRUE; DBG_RETURN(FAIL); } if (ERROR_MARKER == packet->field_count) { - packet->server_asked_323_auth = TRUE; php_mysqlnd_read_error_from_line(p, packet->header.size - 1, packet->error_info.error, sizeof(packet->error_info.error), |