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:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-22 21:56:00 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-22 21:56:00 +0300
commit1787e2246504d4252d2f42d2aac609c844c4cfe5 (patch)
tree3e5442b7e47ec64728fcb53f83947fa2cfa29787 /networking
parent2a51af257957bef9206b594f0e7fb8846ea7070b (diff)
ifconfig: support (by ignoring it) "inet" before IP address or hostname
Diffstat (limited to 'networking')
-rw-r--r--networking/ifconfig.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c
index f4fc0a476..96af7b770 100644
--- a/networking/ifconfig.c
+++ b/networking/ifconfig.c
@@ -387,6 +387,8 @@ int ifconfig_main(int argc, char **argv)
}
#endif
else {
+ if (strcmp(host, "inet") == 0)
+ continue; /* compat stuff */
len_and_sockaddr *lsa = xhost2sockaddr(host, 0);
#if ENABLE_FEATURE_IPV6
if (lsa->sa.sa_family == AF_INET6) {