diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2022-07-14 12:24:35 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-14 12:24:35 -0500 | 
| commit | 6286ce45bc8891a8c45c6e2fc541a6abfc083123 (patch) | |
| tree | ad54d76ac9c0e3a28edb2d39af72d79180c2528d /pimd/pim_nht.c | |
| parent | 1004137bf3ac8c71fdddba6c1a4dc1f37646ac40 (diff) | |
| parent | 8d0f0b02f3322b13c33fb215cf78ceedc685c950 (diff) | |
Merge pull request #11536 from mobash-rasool/temp1
pimd: During prune pending, behave as NOINFO state (conformance issue)
Diffstat (limited to 'pimd/pim_nht.c')
| -rw-r--r-- | pimd/pim_nht.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_nht.c b/pimd/pim_nht.c index ac1315bd42..2e5c0598c0 100644 --- a/pimd/pim_nht.c +++ b/pimd/pim_nht.c @@ -436,7 +436,7 @@ static int pim_update_upstream_nh_helper(struct hash_bucket *bucket, void *arg)  	 * RPF nbr is now unreachable the MFC has already been updated  	 * by pim_rpf_clear  	 */ -	if (rpf_result != PIM_RPF_FAILURE) +	if (rpf_result != PIM_RPF_CHANGED)  		pim_upstream_mroute_iif_update(up->channel_oil, __func__);  	if (rpf_result == PIM_RPF_CHANGED ||  | 
