diff -u --recursive clean/net-tools/Makefile ./net-tools/Makefile --- clean/net-tools/Makefile Mon Aug 4 23:11:49 1997 +++ ./net-tools/Makefile Thu Aug 7 19:25:27 1997 @@ -93,7 +93,7 @@ # -------- end of user definitions -------- MAINTAINER = Philip.Blundell@pobox.com -RELEASE = 1.42 +RELEASE = 1.421 .EXPORT_ALL_VARIABLES: Only in ./net-tools: Makefile~ diff -u --recursive clean/net-tools/README ./net-tools/README --- clean/net-tools/README Mon Aug 4 19:10:08 1997 +++ ./net-tools/README Thu Aug 7 19:25:44 1997 @@ -29,7 +29,7 @@ Notes ----- -This is net-tools 1.42. You need kernel 2.0 or later to use these programs. +This is net-tools 1.421. You need kernel 2.0 or later to use these programs. These programs should compile cleanly with either glibc or libc5. There is no NLS support in this distribution. Apparently the files Only in ./net-tools: README~ diff -u --recursive clean/net-tools/ifconfig.c ./net-tools/ifconfig.c --- clean/net-tools/ifconfig.c Sun Aug 3 01:06:28 1997 +++ ./net-tools/ifconfig.c Tue Aug 5 22:38:17 1997 @@ -427,11 +427,13 @@ /* Support for fetching an IPX address */ +#if HAVE_AFIPX static int ipx_getaddr(int sock, int ft, struct ifreq *ifr) { ((struct sockaddr_ipx *)&ifr->ifr_addr)->sipx_type=ft; return ioctl(sock, SIOCGIFADDR, ifr); } +#endif /* Fetch the inteface configuration from the kernel. */ static int diff -u --recursive clean/net-tools/netstat.c ./net-tools/netstat.c --- clean/net-tools/netstat.c Wed May 28 12:33:08 1997 +++ ./net-tools/netstat.c Tue Aug 5 22:41:49 1997 @@ -445,7 +445,7 @@ line[lnr+1], num); #else num = sscanf(line[lnr--], - "%d: %X:%X %X:%X %X %X:%X %lX:%lX %X %d\n", + "%d: %X:%X %X:%X %X %lX:%lX %X:%lX %lX %d\n", &d, &localaddr.sin_addr.s_addr, &local_port, &remaddr.sin_addr.s_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, &uid); @@ -664,7 +664,7 @@ "%s -> %d args"), line[lnr+1], num); #else num = sscanf(line[lnr--], - "%d: %X:%X %X:%X %X %X:%X %X:%X %X %c %s\n", + "%d: %X:%X %X:%X %X %lX:%lX %X:%lX %lX %c %s\n", &d, &localaddr.sin_addr.s_addr, &local_port, &remaddr.sin_addr.s_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, @@ -868,7 +868,7 @@ more[0] = '\0'; timer_queued = '\0'; num = sscanf(line[lnr--], - "%d: %X:%X %X:%X %X %X:%X %X:%X %X %c %s\n", + "%d: %X:%X %X:%X %X %lX:%lX %X:%lX %lX %c %s\n", &d, &localaddr.sin_addr.s_addr, &local_port, &remaddr.sin_addr.s_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, .