From: Ondrej Zajicek Date: Mon, 15 Aug 2011 18:54:58 +0000 (+0200) Subject: Fixes some missing tabs. X-Git-Tag: v1.3.3~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a52d52fa91ffcbcea58326fc2de476ce5644256f;p=thirdparty%2Fbird.git Fixes some missing tabs. They unintentionally disappeared in 1.3.2. --- diff --git a/nest/rt-attr.c b/nest/rt-attr.c index 5a78f167e..6aed318b1 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, "", e->type); } } - cli_printf(c, -1012, "%s", buf); + cli_printf(c, -1012, "\t%s", buf); } /**