diff options
author | Steve Price <steve@FreeBSD.org> | 1999-11-27 01:35:19 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-11-27 01:35:19 +0000 |
commit | 35e6b5474e63e578bc85da6d955a2d65433b050c (patch) | |
tree | b6f7d89d1e894c1c5338fbc35aff9be30ecf5661 /net/pvm/files | |
parent | The manpage is in section n and is uncompressed. (diff) |
Use ifreq.ifr_flags instead of ifreq.ifru.ifru_flags so this build on both
-current and -stable.
Notes
Notes:
svn path=/head/; revision=23431
Diffstat (limited to 'net/pvm/files')
-rw-r--r-- | net/pvm/files/patch-ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/pvm/files/patch-ac b/net/pvm/files/patch-ac new file mode 100644 index 000000000000..a9d524a37b6b --- /dev/null +++ b/net/pvm/files/patch-ac @@ -0,0 +1,11 @@ +--- src/host.c.orig Fri Nov 26 17:28:41 1999 ++++ src/host.c Fri Nov 26 17:28:54 1999 +@@ -939,7 +939,7 @@ + perror("ioctl"); + goto bail; + } +- if (IFF_UP & req.ifr_ifru.ifru_flags) { ++ if (IFF_UP & req.ifr_flags) { + if (nip > 0 && !(nip % 10)) + iplist = TREALLOC(iplist, (nip + 10), struct in_addr); + iplist[nip++] = |