Return to BSD News archive
Path: sserve!manuel!munnari.oz.au!samsung!zaphod.mps.ohio-state.edu!rpi!uwm.edu!ogicse!hsdndev!cmcl2!deshaw!christos From: christos@deshaw.com (Christos Zoulas) Newsgroups: comp.unix.bsd Subject: Dump bug fix... Message-ID: <1992Jun23.200424.25781@deshaw> Date: 23 Jun 92 20:04:24 GMT Sender: news@deshaw.com Organization: D. E. Shaw & Co. Lines: 21 Originator: christos@sun31 There is a bug in the version of dump from the Net-2 release that you might want to fix :-) Sorry, I don't have a context diff, but you might want to change blkno = idblk[i]; if (blkno != 0) ret |= searchdir(ino, blkno, sblock->fs_bsize, ->>> filesize); if (ret & HASDUMPEDFILE) to: blkno = idblk[i]; if (blkno != 0) ret |= searchdir(ino, blkno, sblock->fs_bsize, ->>> *filesize); if (ret & HASDUMPEDFILE) christos