1
0
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:
Pavel Machek
2000-04-17 11:42:34 +00:00
parent 4444ed2b26
commit 5a2455886d

View File

@ -33,6 +33,7 @@ int_set_format(struct adata *set, byte *buf, unsigned int size)
strcpy(buf, "..."); strcpy(buf, "...");
return; return;
} }
/* FIXME: should not we use same syntax as in filters (i.e. (x,y) )? */
buf += bsprintf(buf, "%d:%d ", *z/65536, *z & 0xffff); buf += bsprintf(buf, "%d:%d ", *z/65536, *z & 0xffff);
z++; z++;
} }