summaryrefslogtreecommitdiff
path: root/ldpd/lde.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-11-02 08:54:58 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-11-12 09:16:23 -0500
commit26f63a1ec6dcb69c18a78558af4c62bc20e7784f (patch)
treeb9ddc3d4820673ef5a0d6383c62fd473070db3fe /ldpd/lde.c
parent47a2d5eb43bd590b49af80b51e1174a9c367aed2 (diff)
*: 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 'ldpd/lde.c')
-rw-r--r--ldpd/lde.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldpd/lde.c b/ldpd/lde.c
index 4f74d93044..2aa96546ec 100644
--- a/ldpd/lde.c
+++ b/ldpd/lde.c
@@ -1627,7 +1627,7 @@ lde_address_list_free(struct lde_nbr *ln)
static void zclient_sync_init(unsigned short instance)
{
/* Initialize special zclient for synchronous message exchanges. */
- zclient_sync = zclient_new_notify(master, &zclient_options_default);
+ zclient_sync = zclient_new(master, &zclient_options_default);
zclient_sync->sock = -1;
zclient_sync->redist_default = ZEBRA_ROUTE_LDP;
zclient_sync->instance = instance;