summaryrefslogtreecommitdiff
path: root/ripd/ripd.c
diff options
context:
space:
mode:
authorhasso <hasso>2004-03-03 19:48:48 +0000
committerhasso <hasso>2004-03-03 19:48:48 +0000
commitcaa6f8ac7d07f8cd3269255e6dce6d248f74af62 (patch)
tree6433147b72768e13c2bae54b481031ebd27b77a5 /ripd/ripd.c
parenta1455d86f58dacbaf0abaacf7f5d15cfa8f1edb8 (diff)
[quagga-dev 489] - fix ripd version send by Krzysztof Oledzki.
Diffstat (limited to 'ripd/ripd.c')
-rw-r--r--ripd/ripd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ripd/ripd.c b/ripd/ripd.c
index 608eee88..a69963be 100644
--- a/ripd/ripd.c
+++ b/ripd/ripd.c
@@ -2344,7 +2344,7 @@ rip_update_interface (struct interface *ifp, u_char version, int route_type,
if (IS_RIP_DEBUG_EVENT)
zlog_info ("multicast announce on %s ", ifp->name);
- rip_output_process (ifp, NULL, NULL, route_type, rip->version_send,
+ rip_output_process (ifp, NULL, NULL, route_type, version,
sconn, saddr);
return;
}
@@ -2373,7 +2373,7 @@ rip_update_interface (struct interface *ifp, u_char version, int route_type,
inet_ntoa (to.sin_addr), ifp->name);
rip_output_process (ifp, connected->address, &to, route_type,
- rip->version_send, connected, saddr);
+ version, connected, saddr);
}
}
}