From: Donald Sharp Date: Sat, 11 Mar 2017 00:19:42 +0000 (-0500) Subject: vtysh: Fix eigrp ordering in 'show run' X-Git-Tag: reindent-master-before~197^2~39 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=49feff1ad58e044dc193e9ffbc6e3b298f45c00c;p=mirror%2Ffrr.git vtysh: Fix eigrp ordering in 'show run' Signed-off-by: Donald Sharp --- diff --git a/vtysh/vtysh_config.c b/vtysh/vtysh_config.c index e60e9c091f..ca52d65bc1 100644 --- a/vtysh/vtysh_config.c +++ b/vtysh/vtysh_config.c @@ -206,6 +206,8 @@ vtysh_config_parse_line (const char *line) config = config_get (RIP_NODE, line); else if (strncmp (line, "router ripng", strlen ("router ripng")) == 0) config = config_get (RIPNG_NODE, line); + else if (strncmp (line, "router eigrp", strlen ("router eigrp")) == 0) + config = config_get (EIGRP_NODE, line); else if (strncmp (line, "router ospf", strlen ("router ospf")) == 0) config = config_get (OSPF_NODE, line); else if (strncmp (line, "router ospf6", strlen ("router ospf6")) == 0)