From owner-cvs-sys Sat Mar 23 11:50:29 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id LAA06870 for cvs-sys-outgoing; Sat, 23 Mar 1996 11:50:29 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id LAA06838 Sat, 23 Mar 1996 11:50:11 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <14544(10)>; Sat, 23 Mar 1996 11:49:29 PST Received: by crevenia.parc.xerox.com id <177478>; Sat, 23 Mar 1996 11:49:24 -0800 From: Bill Fenner To: fenner@freefall.freebsd.org, nate@sri.mt.net Subject: Re: cvs commit: src/sys/i386/isa if_le.c Cc: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Message-Id: <96Mar23.114924pst.177478@crevenia.parc.xerox.com> Date: Sat, 23 Mar 1996 11:49:23 PST Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >This changes need to go into if_zp.c as well. Unless CVS is doing something strange to me, then I don't think they do. I just checked out a clean sys tree to work on, in /a/fenner/current/sys. /a/fenner/current/sys/i386/isa/if_zp.c's only reference to ac_ipaddr is inside the #else of an #if 1 .. #else .. #endif . Bill freefall% pwd /a/fenner/current/sys/i386/isa freefall% grep -3 ac_ipaddr if_zp.c #if 1 arp_ifinit((struct arpcom *) ifp, ifa); #else ((struct arpcom *) ifp)->ac_ipaddr = IA_SIN(ifa)->sin_addr; arpwhohas((struct arpcom *) ifp, &IA_SIN(ifa)->sin_addr); #endif break;