diff options
author | Dinesh G Dutt <ddutt@cumulusnetworks.com> | 2015-09-16 17:37:00 +0200 |
---|---|---|
committer | Dinesh G Dutt <ddutt@cumulusnetworks.com> | 2015-09-16 17:37:00 +0200 |
commit | 4db757ae909b62896aba50eeb9615f2968215a66 (patch) | |
tree | ebb4b620596a0caba405ecc9d1b0164a0991f29c /zebra/zebra_routemap.c | |
parent | Zebra: Add IPv6 protocol filtering support & Setting Src of IPv6 routes (diff) | |
download | frr-4db757ae909b62896aba50eeb9615f2968215a66.tar.xz frr-4db757ae909b62896aba50eeb9615f2968215a66.zip |
Remove unused variable
Ticket:
Reviewed By:
Testing Done:
set src checkin had an unused variable. Fixed that.
Diffstat (limited to 'zebra/zebra_routemap.c')
-rw-r--r-- | zebra/zebra_routemap.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/zebra/zebra_routemap.c b/zebra/zebra_routemap.c index a6ba64372..17e7faaa0 100644 --- a/zebra/zebra_routemap.c +++ b/zebra/zebra_routemap.c @@ -848,7 +848,6 @@ DEFUN (ipv6_protocol, "Route map name\n") { int i; - u_int32_t table_id; if (strcasecmp(argv[0], "any") == 0) i = ZEBRA_ROUTE_MAX; @@ -882,7 +881,6 @@ DEFUN (no_ipv6_protocol, "Protocol from which to stop filtering routes\n") { int i; - u_int32_t table_id; if (strcasecmp(argv[0], "any") == 0) i = ZEBRA_ROUTE_MAX; |