mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05:00
CLEANUP: connection: Use VAR_ARRAY in struct tlv definition
This is for consistency with `struct tlv_ssl`.
This commit is contained in:
parent
7bbc6c9ac3
commit
c44b8de995
1 changed files with 1 additions and 1 deletions
|
|
@ -649,7 +649,7 @@ struct tlv {
|
|||
uint8_t type;
|
||||
uint8_t length_hi;
|
||||
uint8_t length_lo;
|
||||
uint8_t value[0];
|
||||
uint8_t value[VAR_ARRAY];
|
||||
}__attribute__((packed));
|
||||
|
||||
struct tlv_ssl {
|
||||
|
|
|
|||
Loading…
Reference in a new issue