diff options
| author | sarita patra <saritap@vmware.com> | 2022-05-23 05:18:28 -0700 | 
|---|---|---|
| committer | Sarita Patra <saritap@vmware.com> | 2022-07-06 02:56:43 -0700 | 
| commit | e6e530063649d1197d054c8b87580f5a64407916 (patch) | |
| tree | e2cb93a2fc60730b87afb709402a4c200128fd49 /pimd/pim_upstream.c | |
| parent | b502add84f0c6191c9e7d27e844284b1fb19a03f (diff) | |
pim6d: Pass pim_addr for pim_nht callbacks.
For pim callbacks, we pass pim_addr as value, not pointer.
So making it consistent for pim_nht callbacks.
Signed-off-by: sarita patra <saritap@vmware.com>
Diffstat (limited to 'pimd/pim_upstream.c')
| -rw-r--r-- | pimd/pim_upstream.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_upstream.c b/pimd/pim_upstream.c index 8190162a2a..4dcdee34f0 100644 --- a/pimd/pim_upstream.c +++ b/pimd/pim_upstream.c @@ -270,7 +270,7 @@ struct pim_upstream *pim_upstream_del(struct pim_instance *pim,  			zlog_debug(  				"%s: Deregister upstream %s addr %pPA with Zebra NHT",  				__func__, up->sg_str, &up->upstream_addr); -		pim_delete_tracked_nexthop(pim, &up->upstream_addr, up, NULL); +		pim_delete_tracked_nexthop(pim, up->upstream_addr, up, NULL);  	}  	XFREE(MTYPE_PIM_UPSTREAM, up);  | 
