diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-11-02 08:54:58 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-11-12 09:16:23 -0500 |
| commit | 26f63a1ec6dcb69c18a78558af4c62bc20e7784f (patch) | |
| tree | b9ddc3d4820673ef5a0d6383c62fd473070db3fe /pbrd/pbr_zebra.c | |
| parent | 47a2d5eb43bd590b49af80b51e1174a9c367aed2 (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 'pbrd/pbr_zebra.c')
| -rw-r--r-- | pbrd/pbr_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbrd/pbr_zebra.c b/pbrd/pbr_zebra.c index b7391a171a..9db3edacb9 100644 --- a/pbrd/pbr_zebra.c +++ b/pbrd/pbr_zebra.c @@ -391,7 +391,7 @@ void pbr_zebra_init(void) { struct zclient_options opt = { .receive_notify = true }; - zclient = zclient_new_notify(master, &opt); + zclient = zclient_new(master, &opt); zclient_init(zclient, ZEBRA_ROUTE_PBR, 0, &pbr_privs); zclient->zebra_connected = zebra_connected; |
