diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-11-05 18:05:21 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-11-05 18:05:21 -0400 | 
| commit | 38c848c9bdcc00f17eeb60aafc5f158264a19d5a (patch) | |
| tree | 243366a15670fb06af9187de560b118086aef40a /pimd/pim_join.c | |
| parent | 77c657fb1f54da2d1c8aed40ef377ae2beaf8ddd (diff) | |
pimd: remove usage of inet_ntop
We should not be using inet_ntop. and should be using
the appropriate %pI4 instead.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'pimd/pim_join.c')
| -rw-r--r-- | pimd/pim_join.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/pimd/pim_join.c b/pimd/pim_join.c index 652b27476d..4606aec6a1 100644 --- a/pimd/pim_join.c +++ b/pimd/pim_join.c @@ -1,3 +1,5 @@ + +  /*   * PIM for Quagga   * Copyright (C) 2008  Everton da Silva Marques @@ -56,7 +58,6 @@ static void recv_join(struct interface *ifp, struct pim_neighbor *neigh,  		      struct prefix_sg *sg, uint8_t source_flags)  {  	struct pim_interface *pim_ifp = NULL; -	char buf[PREFIX_STRLEN];  	if (PIM_DEBUG_PIM_TRACE) {  		char up_str[INET_ADDRSTRLEN]; @@ -109,9 +110,8 @@ static void recv_join(struct interface *ifp, struct pim_neighbor *neigh,  		if (pim_is_grp_ssm(pim_ifp->pim, sg->grp)) {  			zlog_warn( -				"%s: Specified Group(%s) in join is now in SSM, not allowed to create PIM state", -				__func__, -				inet_ntop(AF_INET, &sg->grp, buf, sizeof(buf))); +				"%s: Specified Group(%pI4) in join is now in SSM, not allowed to create PIM state", +				__func__, &sg->grp);  			return;  		}  | 
