Date: Wed, 3 Jan 2001 14:43:36 -0800 (PST) From: Matt Dillon <dillon@earth.backplane.com> To: Marc Culler <culler@math.uic.edu> Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Bug in NFSv3 client Message-ID: <200101032243.f03Mhar51440@earth.backplane.com> References: <20010103155533.B71238@math.uic.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200101032243.f03Mhar51440>
