]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Put space between entries so they are separated.
authorPavel Machek <pavel@ucw.cz>
Mon, 17 Apr 2000 11:42:34 +0000 (11:42 +0000)
committerPavel Machek <pavel@ucw.cz>
Mon, 17 Apr 2000 11:42:34 +0000 (11:42 +0000)
FIXME: should use format as in filters.

nest/a-set.c

index 1d2cebff6405757b8f85b48842cec0bebc4111d9..fe5598e204bde5a0c2e99186e7fa3cd3eeaab302 100644 (file)
@@ -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;