mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 12:48:43 +00:00
Put space between entries so they are separated.
FIXME: should use format as in filters.
This commit is contained in:
parent
4444ed2b26
commit
5a2455886d
@ -33,7 +33,8 @@ int_set_format(struct adata *set, byte *buf, unsigned int size)
|
||||
strcpy(buf, "...");
|
||||
return;
|
||||
}
|
||||
buf += bsprintf(buf, "%d:%d", *z/65536, *z & 0xffff);
|
||||
/* FIXME: should not we use same syntax as in filters (i.e. (x,y) )? */
|
||||
buf += bsprintf(buf, "%d:%d ", *z/65536, *z & 0xffff);
|
||||
z++;
|
||||
}
|
||||
*buf = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user