summaryrefslogtreecommitdiff
path: root/lib/if.c
diff options
context:
space:
mode:
authorDenis Ovsienko <infrastation@yandex.ru>2011-10-14 20:59:43 +0400
committerDenis Ovsienko <infrastation@yandex.ru>2011-11-21 18:25:31 +0400
commit8fee927850e9011b3bf46f2a8a0d54521d00a807 (patch)
treea436d5eb3b7e8566f4f6801daededb4a82cbfaec /lib/if.c
parentbb6ef3e270f9ae53ac46461962500cf94ecdff08 (diff)
lib: address -Wunused-but-set-variable
* if.c * if_dump(): 'node', 'c' * distribute.c * distribute_list_all(): 'dist' * distribute_list(): 'dist' * districute_list_prefix_all(): 'dist' * if_rmap.c * if_rmap(): 'if_rmap' * vty.c * vty_accept(): 'vty'
Diffstat (limited to 'lib/if.c')
-rw-r--r--lib/if.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/if.c b/lib/if.c
index d14cfb93..41115b0f 100644
--- a/lib/if.c
+++ b/lib/if.c
@@ -426,9 +426,6 @@ if_flag_dump (unsigned long flag)
static void
if_dump (const struct interface *ifp)
{
- struct listnode *node;
- struct connected *c;
-
zlog_info ("Interface %s index %d metric %d mtu %d "
#ifdef HAVE_IPV6
"mtu6 %d "
@@ -439,9 +436,6 @@ if_dump (const struct interface *ifp)
ifp->mtu6,
#endif /* HAVE_IPV6 */
if_flag_dump (ifp->flags));
-
- for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, c))
- ;
}
/* Interface printing for all interface. */