summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2011-08-15 20:54:58 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2011-08-15 20:54:58 +0200
commita52d52fa91ffcbcea58326fc2de476ce5644256f (patch)
tree2a581b1c94bff9e499d752b6ce465604ba75da7a
parenta209d5d8e1bea2b37a7cddebe1f275da4ebde4e3 (diff)
downloadbird-a52d52fa91ffcbcea58326fc2de476ce5644256f.tar
bird-a52d52fa91ffcbcea58326fc2de476ce5644256f.zip
Fixes some missing tabs.
They unintentionally disappeared in 1.3.2.
-rw-r--r--nest/rt-attr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c
index 5a78f16..6aed318 100644
--- a/nest/rt-attr.c
+++ b/nest/rt-attr.c
@@ -457,11 +457,11 @@ static inline void
ea_show_int_set(struct cli *c, struct adata *ad, int way, byte *pos, byte *buf, byte *end)
{
int i = int_set_format(ad, way, 0, pos, end - pos);
- cli_printf(c, -1012, "%s", buf);
+ cli_printf(c, -1012, "\t%s", buf);
while (i)
{
i = int_set_format(ad, way, i, buf, end - buf - 1);
- cli_printf(c, -1012, "\t%s", buf);
+ cli_printf(c, -1012, "\t\t%s", buf);
}
}
@@ -469,11 +469,11 @@ static inline void
ea_show_ec_set(struct cli *c, struct adata *ad, byte *pos, byte *buf, byte *end)
{
int i = ec_set_format(ad, 0, pos, end - pos);
- cli_printf(c, -1012, "%s", buf);
+ cli_printf(c, -1012, "\t%s", buf);
while (i)
{
i = ec_set_format(ad, i, buf, end - buf - 1);
- cli_printf(c, -1012, "\t%s", buf);
+ cli_printf(c, -1012, "\t\t%s", buf);
}
}
@@ -543,7 +543,7 @@ ea_show(struct cli *c, eattr *e)
bsprintf(pos, "<type %02x>", e->type);
}
}
- cli_printf(c, -1012, "%s", buf);
+ cli_printf(c, -1012, "\t%s", buf);
}
/**