diff options
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ChangeLog | 6 | ||||
-rw-r--r-- | ospf6d/ospf6_zebra.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ospf6d/ChangeLog b/ospf6d/ChangeLog index bc04cc94..c2dac1c4 100644 --- a/ospf6d/ChangeLog +++ b/ospf6d/ChangeLog @@ -1,3 +1,9 @@ +2005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + + * ospf6_zebra.c (ospf6_zebra_redistribute, ospf6_zebra_no_redistribute): + Change 2nd arg to zebra_redistribute_send from zclient->sock + to zclient. + 2005-04-07 Paul Jakma <paul@dishone.st> * (global) Fix up list loops to match changes in lib/linklist, diff --git a/ospf6d/ospf6_zebra.c b/ospf6d/ospf6_zebra.c index 1ce36298..bb324592 100644 --- a/ospf6d/ospf6_zebra.c +++ b/ospf6d/ospf6_zebra.c @@ -74,7 +74,7 @@ ospf6_zebra_redistribute (int type) return; zclient->redist[type] = 1; if (zclient->sock > 0) - zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient->sock, type); + zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, type); } void @@ -84,7 +84,7 @@ ospf6_zebra_no_redistribute (int type) return; 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); } /* Inteface addition message from zebra. */ |