]> git.proxmox.com Git - mirror_frr.git/commitdiff
vtysh: Fix eigrp ordering in 'show run'
authorDonald Sharp <sharpd@cumulusnetworks.com>
Sat, 11 Mar 2017 00:19:42 +0000 (19:19 -0500)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Sat, 11 Mar 2017 00:19:42 +0000 (19:19 -0500)
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
vtysh/vtysh_config.c

index e60e9c091fdf0796301650504395e8c82f72b800..ca52d65bc1ba82486808f0c11517de4dbf314663 100644 (file)
@@ -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)