From owner-freebsd-stable Wed Jan 3 14:44: 9 2001 From owner-freebsd-stable@FreeBSD.ORG Wed Jan 3 14:44:07 2001 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from earth.backplane.com (placeholder-dcat-1076843399.broadbandoffice.net [64.47.83.135]) by hub.freebsd.org (Postfix) with ESMTP id 038FB37B400 for ; Wed, 3 Jan 2001 14:44:07 -0800 (PST) Received: (from dillon@localhost) by earth.backplane.com (8.11.1/8.9.3) id f03Mhar51440; Wed, 3 Jan 2001 14:43:36 -0800 (PST) (envelope-from dillon) Date: Wed, 3 Jan 2001 14:43:36 -0800 (PST) From: Matt Dillon Message-Id: <200101032243.f03Mhar51440@earth.backplane.com> To: Marc Culler Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Bug in NFSv3 client References: <20010103155533.B71238@math.uic.edu> Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG oops, scrap that last email. Here is the broken code: #ifdef INET if (!TAILQ_EMPTY(&in_ifaddrhead)) *tl++ = IA_SIN(in_ifaddrhead.tqh_first)->sin_add r.s_addr; else #endif *tl++ = create_verf; *tl = ++create_verf; Try changing it to this: #ifdef INET if (!TAILQ_EMPTY(&in_ifaddrhead)) *tl++ = IA_SIN(in_ifaddrhead.tqh_first)->sin_add r.s_addr; else #endif *tl++ = ++create_verf; I'm just guessing here, still, but I think this will fix it. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message