From c68d0348d55278bb8da53ba2e476325038f25a29 Mon Sep 17 00:00:00 2001 From: Daniel Walton Date: Wed, 10 May 2017 09:56:25 -0400 Subject: [PATCH] eigrpd: Fix compilation errors for some versions of gcc Signed-off-by: Daniel Walton --- eigrpd/eigrp_vty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eigrpd/eigrp_vty.c b/eigrpd/eigrp_vty.c index 1fc8c54594..cc346405a5 100644 --- a/eigrpd/eigrp_vty.c +++ b/eigrpd/eigrp_vty.c @@ -791,7 +791,7 @@ DEFUN (eigrp_ip_summary_address, "AS number\n" "Summary /, e.g. 192.168.0.0/16\n") { - VTY_DECLVAR_CONTEXT(interface, ifp); + //VTY_DECLVAR_CONTEXT(interface, ifp); //u_int32_t AS; struct eigrp *eigrp; @@ -819,7 +819,7 @@ DEFUN (no_eigrp_ip_summary_address, "AS number\n" "Summary /, e.g. 192.168.0.0/16\n") { - VTY_DECLVAR_CONTEXT(interface, ifp); + //VTY_DECLVAR_CONTEXT(interface, ifp); //u_int32_t AS; struct eigrp *eigrp; -- 2.39.5