Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2015-07-01 19:36:06 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2015-07-01 19:36:06 +0300
commitdb31c637fa72cfdc546dd85e10d231a0fdce2b1e (patch)
tree2baa10a7bd17c56a05a11e2a2ef0bcebd08ea4d9 /networking
parent6a7cd3d4aba493c0b0d00155b1e09a867db437cf (diff)
ipaddress: better formatting, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/libiproute/ipaddress.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c
index 85f33560f..a6d5129e7 100644
--- a/networking/libiproute/ipaddress.c
+++ b/networking/libiproute/ipaddress.c
@@ -757,12 +757,16 @@ int FAST_FUNC do_ipaddr(char **argv)
if (cmd < 0)
invarg(*argv, applet_name);
argv++;
- if (cmd <= 4)
- return ipaddr_modify(cmd == 4 ? RTM_DELADDR : RTM_NEWADDR,
- cmd == 0 ? NLM_F_CREATE|NLM_F_EXCL :
- cmd == 1 || cmd == 2 ? NLM_F_REPLACE :
- cmd == 3 ? NLM_F_CREATE|NLM_F_REPLACE :
- 0, argv);
+ if (cmd <= 4) {
+ return ipaddr_modify(
+ /*cmd:*/ cmd == 4 ? RTM_DELADDR : RTM_NEWADDR,
+ /*flags:*/
+ cmd == 0 ? NLM_F_CREATE|NLM_F_EXCL : /* add */
+ cmd == 1 || cmd == 2 ? NLM_F_REPLACE : /* change */
+ cmd == 3 ? NLM_F_CREATE|NLM_F_REPLACE : /* replace */
+ 0 /* delete */
+ , argv);
+ }
}
return ipaddr_list_or_flush(argv, cmd == 8);
}