aboutsummaryrefslogtreecommitdiff
path: root/networking/interface.c
diff options
context:
space:
mode:
author"Robert P. J. Day" <rpjday@mindspring.com>2006-06-26 21:54:57 +0000
committer"Robert P. J. Day" <rpjday@mindspring.com>2006-06-26 21:54:57 +0000
commit4137dd783b66d609ed033233bc2efad446c975c2 (patch)
tree68e75eceec428bdf9935dca5f06f0dc1a41a0709 /networking/interface.c
parentcd68a2e1a891843d8b437a323f1155a3b42d5a72 (diff)
downloadbusybox-4137dd783b66d609ed033233bc2efad446c975c2.tar.gz
Aesthetic fix to use newer structure initialization format.
Diffstat (limited to 'networking/interface.c')
-rw-r--r--networking/interface.c23
1 files changed, 15 insertions, 8 deletions
diff --git a/networking/interface.c b/networking/interface.c
index f5937ef3f..4ad542d14 100644
--- a/networking/interface.c
+++ b/networking/interface.c
@@ -723,13 +723,16 @@ struct hwtype {
};
static const struct hwtype unspec_hwtype = {
- "unspec", "UNSPEC", -1, 0,
- UNSPEC_print, NULL, NULL
+ .name = "unspec",
+ .title = "UNSPEC",
+ .type = -1,
+ .print = UNSPEC_print
};
static const struct hwtype loop_hwtype = {
- "loop", "Local Loopback", ARPHRD_LOOPBACK, 0,
- NULL, NULL, NULL
+ .name = "loop",
+ .title = "Local Loopback",
+ .type = ARPHRD_LOOPBACK
};
#include <net/if_arp.h>
@@ -753,15 +756,19 @@ static char *pr_ether(unsigned char *ptr)
}
static const struct hwtype ether_hwtype = {
- "ether", "Ethernet", ARPHRD_ETHER, ETH_ALEN,
- pr_ether, NULL /* UNUSED in_ether */ , NULL
+ .name = "ether",
+ .title = "Ethernet",
+ .type = ARPHRD_ETHER,
+ .alen = ETH_ALEN,
+ .print = pr_ether
};
#include <net/if_arp.h>
static const struct hwtype ppp_hwtype = {
- "ppp", "Point-Point Protocol", ARPHRD_PPP, 0,
- NULL, NULL, NULL /* UNUSED do_ppp */ , 0
+ .name = "ppp",
+ .title = "Point-to-Point Protocol",
+ .type = ARPHRD_PPP
};
static const struct hwtype * const hwtypes[] = {