diff options
| author | Daniel Walton <dwalton@cumulusnetworks.com> | 2017-08-30 19:18:02 +0400 | 
|---|---|---|
| committer | Daniel Walton <dwalton@cumulusnetworks.com> | 2017-08-31 15:14:01 +0000 | 
| commit | 851fcbaebec0e12945239b56f0e14f7c43d5966f (patch) | |
| tree | 71b0b5d0d26a27045f7f64d0897aa10ac4ba6ccb /babeld/babel_interface.c | |
| parent | 3df31ebb0328b4b84fa11d5fbd956dcc30c44dfe (diff) | |
*: return CMD_WARNING if command was already configured
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
If the user configures some command that is already in the config we
should return CMD_WARNING instead of CMD_WARNING_CONFIG_FAILED
Diffstat (limited to 'babeld/babel_interface.c')
| -rw-r--r-- | babeld/babel_interface.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c index 9fa32ee6fa..bf560b8294 100644 --- a/babeld/babel_interface.c +++ b/babeld/babel_interface.c @@ -292,7 +292,7 @@ DEFUN (babel_network,      if (ret < 0) {          vty_out (vty, "There is same network configuration %s\n",                     argv[1]->arg); -        return CMD_WARNING_CONFIG_FAILED; +        return CMD_WARNING;      }      return CMD_SUCCESS;  | 
