diff options
author | Andrey Hristov <andrey@php.net> | 2010-04-15 11:01:30 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-04-15 11:01:30 +0000 |
commit | c04f752625f76742d5b75e2b5de047564fc51e45 (patch) | |
tree | 3e7c634ce9587df05e9f64d168e37a4f8c7922a6 /ext/mysqlnd/mysqlnd_wireprotocol.h | |
parent | 29aff0a5955add350d2312dd8609c730b8470111 (diff) | |
download | php-git-c04f752625f76742d5b75e2b5de047564fc51e45.tar.gz |
Fix for bug#49234 method not found ssl_set
Patch was tested and compiles on Windows. (Thanks Kalle)
Diffstat (limited to 'ext/mysqlnd/mysqlnd_wireprotocol.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_wireprotocol.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.h b/ext/mysqlnd/mysqlnd_wireprotocol.h index 82f0465df3..fe4736c0ca 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.h +++ b/ext/mysqlnd/mysqlnd_wireprotocol.h @@ -101,6 +101,7 @@ typedef struct st_mysqlnd_packet_auth { /* +1 for \0 because of scramble() */ unsigned char *server_scramble_buf; size_t db_len; + zend_bool send_half_packet; } MYSQLND_PACKET_AUTH; /* OK packet */ |