Return to BSD News archive
Path: sserve!manuel!munnari.oz.au!uunet!ogicse!news.u.washington.edu!serval!phys1.physics.wsu.edu!hlu From: hlu@phys1.physics.wsu.edu (Hongjiu Lu) Newsgroups: comp.unix.bsd Subject: Re: 386BSD bug fixes Message-ID: <1992Jun20.051305.27014@serval.net.wsu.edu> Date: 20 Jun 92 05:13:05 GMT Article-I.D.: serval.1992Jun20.051305.27014 References: <wutcd.708090834@hrz.tu-chemnitz.de> <1992Jun19.185108.1@woods.ulowell.edu> Sender: news@serval.net.wsu.edu (USENET News System) Organization: Washington State University Lines: 21 In article <1992Jun19.185108.1@woods.ulowell.edu>, trandu@woods.ulowell.edu writes: |> In article <wutcd.708090834@hrz.tu-chemnitz.de>, wutcd@hrz.tu-chemnitz.de (Wunsch) writes: |> > Two minor bugs I found are reported here: |> > |> > /sys/kern/kern_subr.c: |> > 188c188 |> > < for (; *from = *to; ++from, ++to) |> > --- |> >> for (; *to = *from; ++from, ++to) |> > |> > +++++ |> > Good luck, J"org |> > (joerg_wunsch%bonnie@hadrian.hrz.tu-chemnitz.de) |> |> why not: for (;*to++ = *from++;) |> can't help it :-) |> -huy |> why not: while (*to++ = *from++); can't help it :-) H.J.