aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-21 11:09:40 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-21 11:09:40 +0000
commit5e34ff29bcc870936ab18172f438a34d042d4e03 (patch)
treea5e7a528f2f916eb883f1161eadceacdf2dca4be /networking/libiproute
parent8b814b4a349e2262c0ad25793b05206a14651ebb (diff)
downloadbusybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.gz
busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.bz2
busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.zip
*: mass renaming of USE_XXXX to IF_XXXX
and SKIP_XXXX to IF_NOT_XXXX - the second one was especially badly named. It was not skipping anything!
Diffstat (limited to 'networking/libiproute')
-rw-r--r--networking/libiproute/iproute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c
index 66557d8fd..37859525d 100644
--- a/networking/libiproute/iproute.c
+++ b/networking/libiproute/iproute.c
@@ -287,14 +287,14 @@ static int print_route(const struct sockaddr_nl *who UNUSED_PARAM,
287static int iproute_modify(int cmd, unsigned flags, char **argv) 287static int iproute_modify(int cmd, unsigned flags, char **argv)
288{ 288{
289 static const char keywords[] ALIGN1 = 289 static const char keywords[] ALIGN1 =
290 "src\0""via\0""mtu\0""lock\0""protocol\0"USE_FEATURE_IP_RULE("table\0") 290 "src\0""via\0""mtu\0""lock\0""protocol\0"IF_FEATURE_IP_RULE("table\0")
291 "dev\0""oif\0""to\0""metric\0"; 291 "dev\0""oif\0""to\0""metric\0";
292 enum { 292 enum {
293 ARG_src, 293 ARG_src,
294 ARG_via, 294 ARG_via,
295 ARG_mtu, PARM_lock, 295 ARG_mtu, PARM_lock,
296 ARG_protocol, 296 ARG_protocol,
297USE_FEATURE_IP_RULE(ARG_table,) 297IF_FEATURE_IP_RULE(ARG_table,)
298 ARG_dev, 298 ARG_dev,
299 ARG_oif, 299 ARG_oif,
300 ARG_to, 300 ARG_to,