summaryrefslogtreecommitdiffstats
path: root/ripd/ripd.c
diff options
context:
space:
mode:
authorpaul <paul>2006-09-11 02:10:40 +0000
committerpaul <paul>2006-09-11 02:10:40 +0000
commitdda820ac440613fbd4a956f5de42d790fdbc6f55 (patch)
tree981491feb57898bc6d2fd30bb086b66289637d83 /ripd/ripd.c
parent87c609b6c72042ac36fabd06c1d245b9e0b8c727 (diff)
downloadquagga-dda820ac440613fbd4a956f5de42d790fdbc6f55.tar.bz2
quagga-dda820ac440613fbd4a956f5de42d790fdbc6f55.tar.xz
[ripd] bug #278: remove gratuitous use of mid-function declaration
2006-09-11 Paul Jakma <paul.jakma@sun.com> * ripd.c: (rip_read) remove gratuitous use of mid-function declaration of vrecv, bug #278.
Diffstat (limited to 'ripd/ripd.c')
-rw-r--r--ripd/ripd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ripd/ripd.c b/ripd/ripd.c
index 518e4861..a1630f6c 100644
--- a/ripd/ripd.c
+++ b/ripd/ripd.c
@@ -1818,6 +1818,7 @@ rip_read (struct thread *t)
struct rip_packet *packet;
struct sockaddr_in from;
int len;
+ int vrecv;
socklen_t fromlen;
struct interface *ifp;
struct connected *ifc;
@@ -1937,8 +1938,8 @@ rip_read (struct thread *t)
}
/* RIP Version check. RFC2453, 4.6 and 5.1 */
- int vrecv = ((ri->ri_receive == RI_RIP_UNSPEC) ?
- rip->version_recv : ri->ri_receive);
+ vrecv = ((ri->ri_receive == RI_RIP_UNSPEC) ?
+ rip->version_recv : ri->ri_receive);
if ((packet->version == RIPv1) && !(vrecv & RIPv1))
{
if (IS_RIP_DEBUG_PACKET)