From 195f0f62d7ae3eb1f98dda46de852660503370eb Mon Sep 17 00:00:00 2001 From: Nicolas Dichtel Date: Fri, 14 Dec 2012 09:50:33 -0800 Subject: [PATCH] ip/link_iptnl: fix indentation Logged in as shemminger Use tabs instead of space when possible. Signed-off-by: Nicolas Dichtel --- ip/link_iptnl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ip/link_iptnl.c b/ip/link_iptnl.c index 238722d1e..b00d8d909 100644 --- a/ip/link_iptnl.c +++ b/ip/link_iptnl.c @@ -298,10 +298,10 @@ static void iptunnel_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[ fprintf(f, "nopmtudisc "); if (tb[IFLA_IPTUN_FLAGS]) { - __u16 iflags = rta_getattr_u16(tb[IFLA_IPTUN_FLAGS]); + __u16 iflags = rta_getattr_u16(tb[IFLA_IPTUN_FLAGS]); - if (iflags & SIT_ISATAP) - fprintf(f, "isatap "); + if (iflags & SIT_ISATAP) + fprintf(f, "isatap "); } if (tb[IFLA_IPTUN_6RD_PREFIXLEN] && @@ -314,12 +314,12 @@ static void iptunnel_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[ printf("6rd-prefix %s/%u ", inet_ntop(AF_INET6, RTA_DATA(tb[IFLA_IPTUN_6RD_PREFIX]), - s1, sizeof(s1)), + s1, sizeof(s1)), prefixlen); if (relayprefix) { printf("6rd-relay_prefix %s/%u ", format_host(AF_INET, 4, &relayprefix, s1, - sizeof(s1)), + sizeof(s1)), relayprefixlen); } } -- 2.47.2