From owner-freebsd-current Sat Mar 23 09:42:43 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id JAA29893 for current-outgoing; Sat, 23 Mar 1996 09:42:43 -0800 (PST) Received: from rocky.sri.MT.net (rocky.sri.MT.net [204.182.243.10]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id JAA29888 Sat, 23 Mar 1996 09:42:40 -0800 (PST) Received: (from nate@localhost) by rocky.sri.MT.net (8.6.12/8.6.12) id KAA21415; Sat, 23 Mar 1996 10:42:33 -0700 Date: Sat, 23 Mar 1996 10:42:33 -0700 From: Nate Williams Message-Id: <199603231742.KAA21415@rocky.sri.MT.net> To: "Jordan K. Hubbard" Cc: fenner@FreeBSd.org, current@FreeBSd.org Subject: Re: Bleah! Who broke this recently?! In-Reply-To: <5783.827600786@time.cdrom.com> References: <5783.827600786@time.cdrom.com> Sender: owner-current@FreeBSd.org X-Loop: FreeBSD.org Precedence: bulk Jordan K. Hubbard writes: > -DFAILSAFE -DCOMPAT_43 -DCD9660 -DMSDOSFS -DNFS -DFFS -DINET -DKERNEL ../../pci/if_de.c > ../../pci/if_de.c: In function `tulip_ioctl': > ../../pci/if_de.c:1886: structure has no member named `ac_ipaddr' /sys/pci/if_pdq.c /sys/pci/if_de.c /sys/i386/isa/if_le.c /sys/i386/isa/if_zp.c All rely on ac_ipaddr, which no longer exists. The code from if_zp.c & if_le.c is: if (sc->le_ac.ac_ipaddr.s_addr != 0) { le_multi_op(sc, etherbroadcastaddr, TRUE); sc->le_flags |= LE_BRDCSTONLY|IFF_MULTICAST; } I'm not sure, but you may be able to remove the check and always set the flags on the other two devices, and in if_pdq.c and if_de.c the line referencing ac_ipaddr can be deleted. Nate