diff options
author | abs <abs> | 2000-01-25 10:33:29 +0000 |
---|---|---|
committer | abs <abs> | 2000-01-25 10:33:29 +0000 |
commit | d37bda2072cb18b0e95631da651ad523defb320c (patch) | |
tree | ab055dec5805a70f102fa97e8157f1e69a1ccd1a /net/pload | |
parent | 4df679fd97bf7fe8453d5477eb8fa100ebe79939 (diff) | |
download | pkgsrc-d37bda2072cb18b0e95631da651ad523defb320c.tar.gz |
If the interface is down - report 'No Connection'. Patch submitted to
author.
Diffstat (limited to 'net/pload')
-rw-r--r-- | net/pload/Makefile | 3 | ||||
-rw-r--r-- | net/pload/patches/patch-aa | 36 |
2 files changed, 38 insertions, 1 deletions
diff --git a/net/pload/Makefile b/net/pload/Makefile index cd33306c16c..8872badab26 100644 --- a/net/pload/Makefile +++ b/net/pload/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.5 1999/03/05 00:50:59 hubertf Exp $ +# $NetBSD: Makefile,v 1.6 2000/01/25 10:33:29 abs Exp $ # DISTNAME= pload-0.9.4 +PKGNAME= pload-0.9.4pl1 CATEGORIES= net x11 MASTER_SITES= http://www.engr.utk.edu/~mdsmith/pload/ diff --git a/net/pload/patches/patch-aa b/net/pload/patches/patch-aa new file mode 100644 index 00000000000..8e82a29e7fe --- /dev/null +++ b/net/pload/patches/patch-aa @@ -0,0 +1,36 @@ +$NetBSD: patch-aa,v 1.1 2000/01/25 10:33:30 abs Exp $ + +--- ioctl_stat.c Thu Mar 4 07:33:03 1999 ++++ /usr/home/abs/ioctl_stat.c Tue Jan 25 02:05:44 2000 +@@ -68,6 +68,9 @@ + + void ioctl_stat(if_data *ifd) + { ++#ifdef __NetBSD__ ++ struct ifreq ifr; ++#endif + struct ifpppstatsreq req; + + if (s < 0) getsocket(); +@@ -78,8 +81,20 @@ + #define ifr_name ifr__name + req.stats_ptr = (caddr_t) &req.stats; + #endif +- sprintf(req.ifr_name, ifd->device); + ++#ifdef __NetBSD__ ++ sprintf(ifr.ifr_name, ifd->device); ++ if (ioctl(s, SIOCGIFFLAGS, (caddr_t)&ifr) < 0 || ++ !(ifr.ifr_flags&IFF_UP)) ++ { ++ /* invalid interface, or interface down */ ++ ifd->in_bytes = 0UL; ++ ifd->out_bytes = 0UL; ++ return; ++ } ++#endif ++ ++ sprintf(req.ifr_name, ifd->device); + if (ioctl(s, SIOCGPPPSTATS, &req) != 0) + { + /* non-existant device? */ |