diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-12-26 23:49:51 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2021-01-05 08:27:27 +0000 |
commit | 641c6be821c3136cb140b6726e16246f2f1cbd4c (patch) | |
tree | 32ab7c59bcd82a971a4af3c6d44875db5527f7f8 /src/vnet/teib | |
parent | 4dd43087d0f3e444b336bc2f6a6d21d09aa0fed9 (diff) |
teib: fix typo in cli
Type: fix
Change-Id: I84388bd8b68e8c48a4f44d7ecf7aadec2408b717
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'src/vnet/teib')
-rw-r--r-- | src/vnet/teib/teib_cli.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/vnet/teib/teib_cli.c b/src/vnet/teib/teib_cli.c index 226b41298ab..fd9e55ed742 100644 --- a/src/vnet/teib/teib_cli.c +++ b/src/vnet/teib/teib_cli.c @@ -75,8 +75,7 @@ teib_add (vlib_main_t * vm, if (rv) { - error = clib_error_return_code (NULL, rv, 0, - "NRHP error", + error = clib_error_return_code (NULL, rv, 0, "TEIB error", format_unformat_error, line_input); } @@ -141,8 +140,7 @@ teib_del (vlib_main_t * vm, if (rv) { - error = clib_error_return_code (NULL, rv, 0, - "NRHP error", + error = clib_error_return_code (NULL, rv, 0, "TEIB error", format_unformat_error, line_input); } |