summaryrefslogtreecommitdiff
path: root/ripngd
diff options
context:
space:
mode:
Diffstat (limited to 'ripngd')
-rw-r--r--ripngd/ChangeLog6
-rw-r--r--ripngd/ripng_zebra.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ripngd/ChangeLog b/ripngd/ChangeLog
index ee13c927..8f874e0e 100644
--- a/ripngd/ChangeLog
+++ b/ripngd/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
+
+ * ripng_zebra.c (ripng_redistribute_unset, ripng_redistribute_clean):
+ Change 2nd arg to zebra_redistribute_send from zclient->sock
+ to zclient.
+
2005-04-08 Hasso Tepper <hasso at quagga.net>
* ripngd.[hc], ripng_interface.c, ripng_peer.c: inet6_ntoa() takes
diff --git a/ripngd/ripng_zebra.c b/ripngd/ripng_zebra.c
index 6e582599..51e73a01 100644
--- a/ripngd/ripng_zebra.c
+++ b/ripngd/ripng_zebra.c
@@ -155,7 +155,7 @@ ripng_redistribute_unset (int type)
zclient->redist[type] = 0;
if (zclient->sock > 0)
- zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient->sock, type);
+ zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, type);
ripng_redistribute_withdraw (type);
@@ -228,7 +228,7 @@ ripng_redistribute_clean ()
{
if (zclient->sock > 0)
zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE,
- zclient->sock, redist_type[i].type);
+ zclient, redist_type[i].type);
zclient->redist[redist_type[i].type] = 0;