diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-11-02 13:54:58 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-11-12 15:16:23 +0100 |
commit | 26f63a1ec6dcb69c18a78558af4c62bc20e7784f (patch) | |
tree | b9ddc3d4820673ef5a0d6383c62fd473070db3fe /ripd/rip_zebra.c | |
parent | Merge pull request #3301 from opensourcerouting/bugfix/remove-unused-isis-debugs (diff) | |
download | frr-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 'ripd/rip_zebra.c')
-rw-r--r-- | ripd/rip_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripd/rip_zebra.c b/ripd/rip_zebra.c index 2a56cd7b1..20f543a25 100644 --- a/ripd/rip_zebra.c +++ b/ripd/rip_zebra.c @@ -211,7 +211,7 @@ static void rip_zebra_connected(struct zclient *zclient) void rip_zclient_init(struct thread_master *master) { /* Set default value to the zebra client structure. */ - zclient = zclient_new_notify(master, &zclient_options_default); + zclient = zclient_new(master, &zclient_options_default); zclient_init(zclient, ZEBRA_ROUTE_RIP, 0, &ripd_privs); zclient->zebra_connected = rip_zebra_connected; zclient->interface_add = rip_interface_add; |