mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:06:16 +02:00
9cd2de40e2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8405 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
469 B
Diff
16 lines
469 B
Diff
--- admswconfig-0.1.orig/admswconfig.c 2007-05-30 12:55:35.000000000 +0200
|
|
+++ admswconfig-0.1/admswconfig.c 2007-07-24 19:22:14.000000000 +0200
|
|
@@ -111,9 +111,9 @@
|
|
}
|
|
} else {
|
|
/* display matrix */
|
|
- printf("ethX\tport0\tport1\tport2\tport3\tport4");
|
|
- if (info.ports == 6)
|
|
- printf("\tport5");
|
|
+ printf("ethX");
|
|
+ for (i = 0; i < info.ports; i++)
|
|
+ printf("\tport%d", i);
|
|
printf("\tCPU\n");
|
|
for (i = 0; i < info.ports; i++) {
|
|
printf("%d", i);
|