mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 12:48:43 +00:00
Nest: Fix signedness of large communities
This commit is contained in:
parent
cec4a73ccb
commit
a46e01eeef
@ -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++ = ' ';
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user