summaryrefslogtreecommitdiff
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authorRenato Westphal <renato@opensourcerouting.org>2020-06-01 21:00:51 -0300
committerGitHub <noreply@github.com>2020-06-01 21:00:51 -0300
commit30712725a0625487cea9b8d82a05a908b41b810b (patch)
tree6e2e5f7708069ae2de1449c9b09b8cda55abbf07 /zebra/zebra_rib.c
parentc5b9016eeb37a21b64daaabf41af0b40d86b0306 (diff)
parentfd563cc7f35e598decdbfd6a58bae2f050143b3f (diff)
Merge pull request #6480 from volta-networks/feat_pwstatus
ldpd: Relay data plane pseudowire status in LDP notification
Diffstat (limited to 'zebra/zebra_rib.c')
-rw-r--r--zebra/zebra_rib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index 71f802f182..0fc716db17 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -3467,7 +3467,8 @@ static int handle_pw_result(struct zebra_dplane_ctx *ctx)
vrf = zebra_vrf_lookup_by_id(dplane_ctx_get_vrf(ctx));
pw = zebra_pw_find(vrf, dplane_ctx_get_ifname(ctx));
if (pw)
- zebra_pw_install_failure(pw);
+ zebra_pw_install_failure(pw,
+ dplane_ctx_get_pw_status(ctx));
}
done: