diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-04-17 13:42:34 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-04-17 13:42:34 +0200 |
commit | 5a2455886db55ae2d1eb8934c7686b4f6586f83c (patch) | |
tree | 7079f38fd89760b3db4af35c2c19286829b3cd2a | |
parent | 4444ed2b26ae07dabbcc3e511798e2d7df3a2846 (diff) | |
download | bird-5a2455886db55ae2d1eb8934c7686b4f6586f83c.tar bird-5a2455886db55ae2d1eb8934c7686b4f6586f83c.zip |
Put space between entries so they are separated.
FIXME: should use format as in filters.
-rw-r--r-- | nest/a-set.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nest/a-set.c b/nest/a-set.c index 1d2cebf..fe5598e 100644 --- a/nest/a-set.c +++ b/nest/a-set.c @@ -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; |