diff options
| author | Renato Westphal <renato@openbsd.org> | 2017-08-31 13:23:25 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-31 13:23:25 -0300 |
| commit | 8941a38520ca0c162015fd137311b2b9c6633cbc (patch) | |
| tree | df0569b313fb6a09bd1a0e7e8ee0368f1b4ee667 /lib/ns.c | |
| parent | b3c18264e4494b37743ac586eb05d4c54cf080ac (diff) | |
| parent | 851fcbaebec0e12945239b56f0e14f7c43d5966f (diff) | |
Merge pull request #1078 from dwalton76/ospfd-network-cmd-warning
*: return CMD_WARNING if command was already configured
Diffstat (limited to 'lib/ns.c')
| -rw-r--r-- | lib/ns.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -312,7 +312,7 @@ DEFUN_NOSH (ns_netns, if (ns->name && strcmp(ns->name, pathname) != 0) { vty_out(vty, "NS %u is already configured with NETNS %s\n", ns->ns_id, ns->name); - return CMD_WARNING_CONFIG_FAILED; + return CMD_WARNING; } if (!ns->name) |
