From: Pavel TvrdĂ­k Date: Wed, 20 Jan 2016 14:44:32 +0000 (+0100) Subject: RPKI: Use '%N' key in printf net_addr X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c73a9c70dc17bc38c854af1229decf8d8ca0b8c;p=thirdparty%2Fbird.git RPKI: Use '%N' key in printf net_addr --- diff --git a/proto/rpki/packets.c b/proto/rpki/packets.c index ac4ce14c3..2a227a9bf 100644 --- a/proto/rpki/packets.c +++ b/proto/rpki/packets.c @@ -183,9 +183,7 @@ pfx_table_add(struct rpki_cache *cache, const net_addr_union *pfxr) { struct rpki_proto *p = cache->p; - char addr_buf[100]; - net_format((net_addr *)pfxr, addr_buf, sizeof(addr_buf)); - CACHE_TRACE(D_EVENTS, cache, "Import %s", addr_buf); + CACHE_TRACE(D_EVENTS, cache, "Import %N", pfxr); net *n = net_get(cache->p->p.table, &pfxr->n); @@ -211,9 +209,7 @@ pfx_table_remove(struct rpki_cache *cache, const net_addr_union *pfxr) { struct rpki_proto *p = cache->p; - char addr_buf[100]; - net_format((net_addr *)pfxr, addr_buf, sizeof(addr_buf)); - CACHE_TRACE(D_EVENTS, cache, "Remove %s", addr_buf); + CACHE_TRACE(D_EVENTS, cache, "Remove %N", pfxr); net *n = net_get(cache->p->p.table, &pfxr->n); rte_update2(p->p.main_ahook, n, NULL, rt_get_source(&cache->p->p, cache->cache_id));