diff options
| author | Mark Stapp <mjs@voltanet.io> | 2020-10-22 10:01:20 -0400 | 
|---|---|---|
| committer | Mark Stapp <mjs@voltanet.io> | 2020-10-22 10:13:56 -0400 | 
| commit | ee2bbf7ce20616e09f45b8b2f13e6fcba921c57d (patch) | |
| tree | 7895f00a1be28c63c30377264abde11f7a8f8c4d /pimd/pim_igmpv3.c | |
| parent | 84de5a245a3eb17619588a535b9f408ce802a8c9 (diff) | |
pimd: replace inet_ntoa
Replace all use of inet_ntoa, using %pI4 or inet_ntoa instead
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'pimd/pim_igmpv3.c')
| -rw-r--r-- | pimd/pim_igmpv3.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/pimd/pim_igmpv3.c b/pimd/pim_igmpv3.c index 8eaca75821..22767a8629 100644 --- a/pimd/pim_igmpv3.c +++ b/pimd/pim_igmpv3.c @@ -1921,10 +1921,10 @@ int igmp_v3_recv_report(struct igmp_sock *igmp, struct in_addr from,  		if (PIM_DEBUG_IGMP_PACKETS) {  			zlog_debug( -				"    Recv IGMP report v3 from %s on %s: record=%d type=%d auxdatalen=%d sources=%d group=%s", +				"    Recv IGMP report v3 from %s on %s: record=%d type=%d auxdatalen=%d sources=%d group=%pI4",  				from_str, ifp->name, i, rec_type,  				rec_auxdatalen, rec_num_sources, -				inet_ntoa(rec_group)); +				&rec_group);  		}  		/* Scan sources */ @@ -1949,9 +1949,9 @@ int igmp_v3_recv_report(struct igmp_sock *igmp, struct in_addr from,  						 "<source?>");  				zlog_debug( -					"        Recv IGMP report v3 from %s on %s: record=%d group=%s source=%s", +					"        Recv IGMP report v3 from %s on %s: record=%d group=%pI4 source=%s",  					from_str, ifp->name, i, -					inet_ntoa(rec_group), src_str); +					&rec_group, src_str);  			}  		} /* for (sources) */ @@ -1969,8 +1969,8 @@ int igmp_v3_recv_report(struct igmp_sock *igmp, struct in_addr from,  		if (PIM_DEBUG_IGMP_PACKETS && filtered)  			zlog_debug( -				"Filtering IGMPv3 group record %s from %s on %s per prefix-list %s", -				inet_ntoa(rec_group), from_str, ifp->name, +				"Filtering IGMPv3 group record %pI4 from %s on %s per prefix-list %s", +				&rec_group, from_str, ifp->name,  				pim_ifp->boundary_oil_plist);  		/*  | 
