diff options
author | Alexander Chernavin <achernavin@netgate.com> | 2019-04-22 09:30:16 -0400 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-04-22 21:33:02 +0000 |
commit | d0aed2eb399521449060dfa46964a11dd652e787 (patch) | |
tree | 386f9fb6da0f7d2ada42b6eda352df9d4774a8d2 /src | |
parent | 81f54a5c5fa7328461bd613bf95eb6cb8ded338d (diff) |
GRE: set gre_tunnel_type init value to zero in API
Change-Id: I9715b0578852a1ed59d78b7a9e28f32fc763ed3c
Signed-off-by: Alexander Chernavin <achernavin@netgate.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/gre/gre.api | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/gre/gre.api b/src/vnet/gre/gre.api index 17552cf344d..841099c68cc 100644 --- a/src/vnet/gre/gre.api +++ b/src/vnet/gre/gre.api @@ -22,7 +22,7 @@ import "vnet/ip/ip_types.api"; */ enum gre_tunnel_type { - GRE_API_TUNNEL_TYPE_L3, + GRE_API_TUNNEL_TYPE_L3 = 0, GRE_API_TUNNEL_TYPE_TEB, GRE_API_TUNNEL_TYPE_ERSPAN, }; |