1
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-12 02:14:52 +02:00

Nest: Fix signedness of large communities

This commit is contained in:
Ondrej Zajicek (work) 2016-10-04 12:45:39 +02:00
parent cec4a73ccb
commit a46e01eeef

View File

@ -144,7 +144,7 @@ ec_set_format(struct adata *set, int from, byte *buf, uint size)
int
lc_format(byte *buf, lcomm lc)
{
return bsprintf(buf, "(%d, %d, %d)", lc.asn, lc.ldp1, lc.ldp2);
return bsprintf(buf, "(%u, %u, %u)", lc.asn, lc.ldp1, lc.ldp2);
}
int
@ -167,7 +167,7 @@ lc_set_format(struct adata *set, int from, byte *buf, uint bufsize)
return i;
}
buf += bsprintf(buf, "(%d, %d, %d)", d[i], d[i+1], d[i+2]);
buf += bsprintf(buf, "(%u, %u, %u)", d[i], d[i+1], d[i+2]);
*buf++ = ' ';
}