From 33879c95b865d62b07f8390692dc3c7294a57375 Mon Sep 17 00:00:00 2001 From: Chris Luke Date: Tue, 28 Jun 2016 19:54:21 -0400 Subject: Fix the spelling of the word "suppress". The spelling mistake where "suppress" is written as "surpress" was sufficiently common and annoyed me enough to fix it. For backwards compatibility, the CLI and API test tool both still accept the erroneous spelling. Change-Id: I82104ae9d8c2c9d6e3396ba0d72cb1dc133081d1 Signed-off-by: Chris Luke --- vpp/vpp-api/api.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vpp/vpp-api/api.c') diff --git a/vpp/vpp-api/api.c b/vpp/vpp-api/api.c index fbe33fe1..9df8791b 100644 --- a/vpp/vpp-api/api.c +++ b/vpp/vpp-api/api.c @@ -3111,10 +3111,10 @@ vl_api_sw_interface_ip6nd_ra_config_t_handler { vl_api_sw_interface_ip6nd_ra_config_reply_t * rmp; int rv = 0; - u8 is_no, surpress, managed, other, ll_option, send_unicast, cease, default_router; + u8 is_no, suppress, managed, other, ll_option, send_unicast, cease, default_router; is_no = mp->is_no == 1; - surpress = mp->surpress == 1; + suppress = mp->suppress == 1; managed = mp->managed == 1; other = mp->other == 1; ll_option = mp->ll_option == 1; @@ -3125,7 +3125,7 @@ vl_api_sw_interface_ip6nd_ra_config_t_handler VALIDATE_SW_IF_INDEX(mp); rv = ip6_neighbor_ra_config(vm, ntohl(mp->sw_if_index), - surpress, managed, other, + suppress, managed, other, ll_option, send_unicast, cease, default_router, ntohl (mp->lifetime), ntohl(mp->initial_count), ntohl(mp->initial_interval), -- cgit 1.2.3-korg