mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Put space between entries so they are separated.
FIXME: should use format as in filters.
This commit is contained in:
@ -33,7 +33,8 @@ int_set_format(struct adata *set, byte *buf, unsigned int size)
|
|||||||
strcpy(buf, "...");
|
strcpy(buf, "...");
|
||||||
return;
|
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++;
|
z++;
|
||||||
}
|
}
|
||||||
*buf = 0;
|
*buf = 0;
|
||||||
|
Reference in New Issue
Block a user