summaryrefslogtreecommitdiffstats
path: root/eigrpd
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-11-02 13:54:58 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-11-12 15:16:23 +0100
commit26f63a1ec6dcb69c18a78558af4c62bc20e7784f (patch)
treeb9ddc3d4820673ef5a0d6383c62fd473070db3fe /eigrpd
parentMerge pull request #3301 from opensourcerouting/bugfix/remove-unused-isis-debugs (diff)
downloadfrr-26f63a1ec6dcb69c18a78558af4c62bc20e7784f.tar.xz
frr-26f63a1ec6dcb69c18a78558af4c62bc20e7784f.zip
*: Replace zclient_new with zclient_new_notify
It's been a year since we added the new optional parameters to instantiation. Let's switch over to the new name. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd')
-rw-r--r--eigrpd/eigrp_zebra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_zebra.c b/eigrpd/eigrp_zebra.c
index 3a3d6aae1..29bd23b51 100644
--- a/eigrpd/eigrp_zebra.c
+++ b/eigrpd/eigrp_zebra.c
@@ -116,7 +116,7 @@ void eigrp_zebra_init(void)
{
struct zclient_options opt = {.receive_notify = false};
- zclient = zclient_new_notify(master, &opt);
+ zclient = zclient_new(master, &opt);
zclient_init(zclient, ZEBRA_ROUTE_EIGRP, 0, &eigrpd_privs);
zclient->zebra_connected = eigrp_zebra_connected;