source:
patches/net-tools-1.60-gcc34-2.patch@
617118d
Last change on this file since 617118d was 617118d, checked in by , 19 years ago | |
---|---|
|
|
File size: 2.9 KB |
-
net-tools-1.60
Submitted By: Zack Winkles <winkie AT linuxfromscratch DOT org> Date: 2004-04-09 Initial Package Version: 1.60 Origin: N/A Description: Fix some occurrences of syntax that GCC 3.4 doesn't like. diff -Naur net-tools-1.60.orig/hostname.c net-tools-1.60/hostname.c
old new 98 98 fprintf(stderr, _("%s: name too long\n"), program_name); 99 99 break; 100 100 default: 101 ((void)0); 101 102 } 102 103 exit(1); 103 104 }; … … 117 118 fprintf(stderr, _("%s: name too long\n"), program_name); 118 119 break; 119 120 default: 121 ((void)0); 120 122 } 121 123 exit(1); 122 124 }; … … 174 176 printf("%s\n", hp->h_name); 175 177 break; 176 178 default: 179 ((void)0); 177 180 } 178 181 } 179 182 -
lib/inet_sr.c
diff -Naur net-tools-1.60.orig/lib/inet_sr.c net-tools-1.60/lib/inet_sr.c
old new 105 105 case 2: 106 106 isnet = 0; break; 107 107 default: 108 ((void)0); 108 109 } 109 110 110 111 /* Fill in the other fields. */ -
net-tools-1.60
diff -Naur net-tools-1.60.orig/mii-tool.c net-tools-1.60/mii-tool.c
old new 379 379 /*--------------------------------------------------------------------*/ 380 380 381 381 const char *usage = 382 "usage: %s [-VvRrwl] [-A media,... | -F media] [interface ...] 383 -V, --version display version information 384 -v, --verbose more verbose output 385 -R, --reset reset MII to poweron state 386 -r, --restart restart autonegotiation 387 -w, --watch monitor for link status changes 388 -l, --log with -w, write events to syslog 389 -A, --advertise=media,... advertise only specified media 390 -F, --force=media force specified media technology 391 media: 100baseT4, 100baseTx-FD, 100baseTx-HD, 10baseT-FD, 10baseT-HD, 392 (to advertise both HD and FD) 100baseTx, 10baseT\n";382 "usage: %s [-VvRrwl] [-A media,... | -F media] [interface ...]\n" 383 " -V, --version display version information\n" 384 " -v, --verbose more verbose output\n" 385 " -R, --reset reset MII to poweron state\n" 386 " -r, --restart restart autonegotiation\n" 387 " -w, --watch monitor for link status changes\n" 388 " -l, --log with -w, write events to syslog\n" 389 " -A, --advertise=media,... advertise only specified media\n" 390 " -F, --force=media force specified media technology\n" 391 "media: 100baseT4, 100baseTx-FD, 100baseTx-HD, 10baseT-FD, 10baseT-HD,\n" 392 " (to advertise both HD and FD) 100baseTx, 10baseT\n"; 393 393 394 394 int main(int argc, char **argv) 395 395 {
Note:
See TracBrowser
for help on using the repository browser.