diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-08-12 12:10:30 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-08-12 12:10:30 +0000 |
commit | 9cd2de40e2802d224231c2a3bac88b043a630ebf (patch) | |
tree | 83d9f926b15ed45132e4d79e56b6908ab6128752 /package/admswconfig | |
parent | 12c03192898a56df8406745a8c7d2fc5f3662184 (diff) |
Add the matrix fix from #2127
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8405 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/admswconfig')
-rw-r--r-- | package/admswconfig/patches/001-matrix.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/admswconfig/patches/001-matrix.patch b/package/admswconfig/patches/001-matrix.patch new file mode 100644 index 000000000..5f3b5b188 --- /dev/null +++ b/package/admswconfig/patches/001-matrix.patch @@ -0,0 +1,15 @@ +--- 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); |