diff options
Diffstat (limited to 'networking/libiproute/iprule.c')
-rw-r--r-- | networking/libiproute/iprule.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/libiproute/iprule.c b/networking/libiproute/iprule.c index bec530dcb..e52473117 100644 --- a/networking/libiproute/iprule.c +++ b/networking/libiproute/iprule.c | |||
@@ -113,7 +113,7 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM, | |||
113 | } | 113 | } |
114 | 114 | ||
115 | if (r->rtm_tos) { | 115 | if (r->rtm_tos) { |
116 | printf("tos %s ", rtnl_dsfield_n2a(r->rtm_tos, b1, sizeof(b1))); | 116 | printf("tos %s ", rtnl_dsfield_n2a(r->rtm_tos, b1)); |
117 | } | 117 | } |
118 | if (tb[RTA_PROTOINFO]) { | 118 | if (tb[RTA_PROTOINFO]) { |
119 | printf("fwmark %#x ", *(uint32_t*)RTA_DATA(tb[RTA_PROTOINFO])); | 119 | printf("fwmark %#x ", *(uint32_t*)RTA_DATA(tb[RTA_PROTOINFO])); |
@@ -124,7 +124,7 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM, | |||
124 | } | 124 | } |
125 | 125 | ||
126 | if (r->rtm_table) | 126 | if (r->rtm_table) |
127 | printf("lookup %s ", rtnl_rttable_n2a(r->rtm_table, b1, sizeof(b1))); | 127 | printf("lookup %s ", rtnl_rttable_n2a(r->rtm_table, b1)); |
128 | 128 | ||
129 | if (tb[RTA_FLOW]) { | 129 | if (tb[RTA_FLOW]) { |
130 | uint32_t to = *(uint32_t*)RTA_DATA(tb[RTA_FLOW]); | 130 | uint32_t to = *(uint32_t*)RTA_DATA(tb[RTA_FLOW]); |
@@ -132,10 +132,10 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM, | |||
132 | to &= 0xFFFF; | 132 | to &= 0xFFFF; |
133 | if (from) { | 133 | if (from) { |
134 | printf("realms %s/", | 134 | printf("realms %s/", |
135 | rtnl_rtrealm_n2a(from, b1, sizeof(b1))); | 135 | rtnl_rtrealm_n2a(from, b1)); |
136 | } | 136 | } |
137 | printf("%s ", | 137 | printf("%s ", |
138 | rtnl_rtrealm_n2a(to, b1, sizeof(b1))); | 138 | rtnl_rtrealm_n2a(to, b1)); |
139 | } | 139 | } |
140 | 140 | ||
141 | if (r->rtm_type == RTN_NAT) { | 141 | if (r->rtm_type == RTN_NAT) { |
@@ -148,7 +148,7 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM, | |||
148 | } else | 148 | } else |
149 | printf("masquerade"); | 149 | printf("masquerade"); |
150 | } else if (r->rtm_type != RTN_UNICAST) | 150 | } else if (r->rtm_type != RTN_UNICAST) |
151 | fputs(rtnl_rtntype_n2a(r->rtm_type, b1, sizeof(b1)), stdout); | 151 | fputs(rtnl_rtntype_n2a(r->rtm_type, b1), stdout); |
152 | 152 | ||
153 | bb_putchar('\n'); | 153 | bb_putchar('\n'); |
154 | /*fflush(stdout);*/ | 154 | /*fflush(stdout);*/ |