diff options
author | Klement Sekera <ksekera@cisco.com> | 2019-12-11 13:06:27 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-12-13 14:08:19 +0000 |
commit | 407f593dc0d06453f0b5c124b3a48edd52da6704 (patch) | |
tree | 55ecf9b6d4c5bcb1ddb0fc4346f4af406afcac31 /src/vnet/ip/reass/ip4_sv_reass.c | |
parent | 4c6b1b6da5d884c80363aeba75bc318a06e29031 (diff) |
ip: SVR: fix wrong return value
Type: fix
Change-Id: I9498b660bf2045bb6aac96d19bb9456a14b35847
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'src/vnet/ip/reass/ip4_sv_reass.c')
-rw-r--r-- | src/vnet/ip/reass/ip4_sv_reass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/ip/reass/ip4_sv_reass.c b/src/vnet/ip/reass/ip4_sv_reass.c index 91a50036b4f..a926f2adf10 100644 --- a/src/vnet/ip/reass/ip4_sv_reass.c +++ b/src/vnet/ip/reass/ip4_sv_reass.c @@ -1182,7 +1182,7 @@ ip4_sv_reass_enable_disable_with_refcnt (u32 sw_if_index, int is_enable) "ip4-sv-reassembly-feature", sw_if_index, 0, 0, 0); } - return -1; + return 0; } uword |