summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2017-03-14 17:18:50 +0100
committerOndrej Zajicek (work) <santiago@crfreenet.org>2017-03-14 17:25:42 +0100
commita5d2a34497853a02692a0b8ea812f44d6820a399 (patch)
treec4aa68637722e863c7cd13fa26228fdf98f8cdc3 /lib
parent8c9986d310c58b26c000375be00be0deb9c2e360 (diff)
Minor cleanups
BTW, 'prefices' is hypercorrection, as 'prefix' is from 'praefixum' with plural 'praefixa'.
Diffstat (limited to 'lib')
-rw-r--r--lib/net.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/net.c b/lib/net.c
index 2bf4049e..c29ed299 100644
--- a/lib/net.c
+++ b/lib/net.c
@@ -81,14 +81,14 @@ net_format(const net_addr *N, char *buf, int buflen)
case NET_VPN4:
{
int c = rd_format(n->vpn4.rd, buf, buflen);
- buf += c; buflen -= c;
+ ADVANCE(buf, buflen, c);
return bsnprintf(buf, buflen, " %I4/%d", n->vpn4.prefix, n->vpn4.pxlen);
}
case NET_VPN6:
{
/* XXX: RD format is specified for VPN4; not found any for VPN6, reusing the same as for VPN4 */
int c = rd_format(n->vpn6.rd, buf, buflen);
- buf += c; buflen -= c;
+ ADVANCE(buf, buflen, c);
return bsnprintf(buf, buflen, " %I6/%d", n->vpn6.prefix, n->vpn6.pxlen);
}
case NET_ROA4: