svn commit: trunk/busybox/networking

rpjday at busybox.net rpjday at busybox.net
Mon Jun 26 21:55:01 UTC 2006


Author: rpjday
Date: 2006-06-26 14:54:57 -0700 (Mon, 26 Jun 2006)
New Revision: 15521

Log:
Aesthetic fix to use newer structure initialization format.


Modified:
   trunk/busybox/networking/interface.c


Changeset:
Modified: trunk/busybox/networking/interface.c
===================================================================
--- trunk/busybox/networking/interface.c	2006-06-26 21:31:17 UTC (rev 15520)
+++ trunk/busybox/networking/interface.c	2006-06-26 21:54:57 UTC (rev 15521)
@@ -723,13 +723,16 @@
 };
 
 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 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[] = {




More information about the busybox-cvs mailing list