diff options
author | Chris Luke <chrisy@flirble.org> | 2016-06-28 19:54:21 -0400 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2016-06-29 19:49:21 +0000 |
commit | 33879c95b865d62b07f8390692dc3c7294a57375 (patch) | |
tree | a5dc448c7d1abb4bcf0a73526a57954f9709c69b /vpp/vpp-api/custom_dump.c | |
parent | 006eb2689b901b4700f4360cc0417c6c0d93cc46 (diff) |
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 <chrisy@flirble.org>
Diffstat (limited to 'vpp/vpp-api/custom_dump.c')
-rw-r--r-- | vpp/vpp-api/custom_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vpp/vpp-api/custom_dump.c b/vpp/vpp-api/custom_dump.c index ac90a56f..d28882f6 100644 --- a/vpp/vpp-api/custom_dump.c +++ b/vpp/vpp-api/custom_dump.c @@ -943,8 +943,8 @@ static void *vl_api_sw_interface_ip6nd_ra_config_t_print s = format (s, "interval %d ", ntohl(mp->initial_interval)); - if (mp->surpress) - s = format (s, "surpress "); + if (mp->suppress) + s = format (s, "suppress "); if (mp->managed) s = format (s, "managed "); |