39 lines
2.1 KiB
Diff
39 lines
2.1 KiB
Diff
|
Submitted By: Ronald Hummelink <ronald at hummelink dot xs4all dot nl>
|
||
|
Date: 2003-08-24
|
||
|
Initial Package Version: 1.60
|
||
|
Origin: Ronald Hummelink
|
||
|
Description: mii-tool.c doesn't compile using gcc 3.3.1 and probably any gcc 3.3.x. This patch fixes a string block to a syntax gcc 3.3 likes.
|
||
|
|
||
|
diff -Naur net-tools-1.60.orig/mii-tool.c net-tools-1.60/mii-tool.c
|
||
|
--- net-tools-1.60.orig/mii-tool.c 2000-05-21 14:31:17.000000000 +0000
|
||
|
+++ net-tools-1.60/mii-tool.c 2003-08-24 20:04:38.000000000 +0000
|
||
|
@@ -379,17 +379,17 @@
|
||
|
/*--------------------------------------------------------------------*/
|
||
|
|
||
|
const char *usage =
|
||
|
-"usage: %s [-VvRrwl] [-A media,... | -F media] [interface ...]
|
||
|
- -V, --version display version information
|
||
|
- -v, --verbose more verbose output
|
||
|
- -R, --reset reset MII to poweron state
|
||
|
- -r, --restart restart autonegotiation
|
||
|
- -w, --watch monitor for link status changes
|
||
|
- -l, --log with -w, write events to syslog
|
||
|
- -A, --advertise=media,... advertise only specified media
|
||
|
- -F, --force=media force specified media technology
|
||
|
-media: 100baseT4, 100baseTx-FD, 100baseTx-HD, 10baseT-FD, 10baseT-HD,
|
||
|
- (to advertise both HD and FD) 100baseTx, 10baseT\n";
|
||
|
+"usage: %s [-VvRrwl] [-A media,... | -F media] [interface ...]\n"
|
||
|
+" -V, --version display version information\n"
|
||
|
+" -v, --verbose more verbose output\n"
|
||
|
+" -R, --reset reset MII to poweron state\n"
|
||
|
+" -r, --restart restart autonegotiation\n"
|
||
|
+" -w, --watch monitor for link status changes\n"
|
||
|
+" -l, --log with -w, write events to syslog\n"
|
||
|
+" -A, --advertise=media,... advertise only specified media\n"
|
||
|
+" -F, --force=media force specified media technology\n"
|
||
|
+"media: 100baseT4, 100baseTx-FD, 100baseTx-HD, 10baseT-FD, 10baseT-HD,\n"
|
||
|
+" (to advertise both HD and FD) 100baseTx, 10baseT\n";
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|