diff options
| author | Andrey Hristov <andrey@php.net> | 2009-12-23 11:58:45 +0000 |
|---|---|---|
| committer | Andrey Hristov <andrey@php.net> | 2009-12-23 11:58:45 +0000 |
| commit | 01adfaee5f09c7cb480726140a0239333b5e7f21 (patch) | |
| tree | 09d426c4a887052e512d06b253aef38d5b1fb32c /ext/mysqlnd/mysqlnd_wireprotocol.h | |
| parent | 6a9d78f1022cdf6ecfe484686e4a9cd99335a690 (diff) | |
| download | php-git-01adfaee5f09c7cb480726140a0239333b5e7f21.tar.gz | |
Unify. The typedef-ed structs in mysqlnd are always capitalized.
Diffstat (limited to 'ext/mysqlnd/mysqlnd_wireprotocol.h')
| -rw-r--r-- | ext/mysqlnd/mysqlnd_wireprotocol.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.h b/ext/mysqlnd/mysqlnd_wireprotocol.h index b3f0ab63d8..66622e5cc4 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.h +++ b/ext/mysqlnd/mysqlnd_wireprotocol.h @@ -181,7 +181,7 @@ typedef struct st_php_mysql_packet_rset_header { char *info_or_local_file; size_t info_or_local_file_len; /* If error packet, we use these */ - mysqlnd_error_info error_info; + MYSQLND_ERROR_INFO error_info; } php_mysql_packet_rset_header; @@ -193,7 +193,7 @@ typedef struct st_php_mysql_packet_res_field { zend_bool skip_parsing; zend_bool stupid_list_fields_eof; - mysqlnd_error_info error_info; + MYSQLND_ERROR_INFO error_info; } php_mysql_packet_res_field; @@ -222,7 +222,7 @@ struct st_php_mysql_packet_row { size_t bit_fields_total_len; /* trailing \0 not counted */ /* If error packet, we use these */ - mysqlnd_error_info error_info; + MYSQLND_ERROR_INFO error_info; }; @@ -246,7 +246,7 @@ typedef struct st_php_mysql_packet_prepare_response { unsigned int warning_count; /* present in case of error */ - mysqlnd_error_info error_info; + MYSQLND_ERROR_INFO error_info; } php_mysql_packet_prepare_response; @@ -258,7 +258,7 @@ typedef struct st_php_mysql_packet_chg_user_resp { /* message_len is not part of the packet*/ uint16_t server_capabilities; /* If error packet, we use these */ - mysqlnd_error_info error_info; + MYSQLND_ERROR_INFO error_info; } php_mysql_packet_chg_user_resp; |
