diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2021-10-06 09:47:41 +0000 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-10-06 17:54:32 +0000 |
commit | 0c4931cb351929a1ccdb6b29431def3705f101d7 (patch) | |
tree | d87b37202e8d9fe83c7a81634bd5c908c3711f32 /src/vnet/tcp/tcp.h | |
parent | 5e6a1651c4759eac56a0409a75e6d3b75511d234 (diff) |
tcp: fix severity info
Type: fix
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ibe39bc045c3b154209a83b59ef95a37c61b32c0c
Diffstat (limited to 'src/vnet/tcp/tcp.h')
-rw-r--r-- | src/vnet/tcp/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index ca650b7fa29..3ddd324873b 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -34,7 +34,7 @@ extern timer_expiration_handler tcp_timer_retransmit_syn_handler; typedef enum _tcp_error { -#define tcp_error(n,s) TCP_ERROR_##n, +#define tcp_error(f, n, s, d) TCP_ERROR_##f, #include <vnet/tcp/tcp_error.def> #undef tcp_error TCP_N_ERROR, |