Date: Sat, 24 Jun 1995 10:07:23 -0700 From: Joerg Wunsch <joerg> To: CVS-commiters, cvs-sbin Subject: cvs commit: src/sbin/dump traverse.c Message-ID: <199506241707.KAA16621@freefall.cdrom.com>
next in thread | raw e-mail | index | archive | help
joerg 95/06/24 10:07:23 Modified: sbin/dump traverse.c Log: When using dump/rdump on large filesytems (my case 3 GB), the lseek claims multiple times to have failed. The problem is a off_t is converted into a int and checked for a negative. A true lseek check should be checking if the off_t is equal to -1 for failure. (Suggested fix from PR #bin/461) Submitted by: mark tinguely <tinguely@opus.cs.ndsu.NoDak.edu>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199506241707.KAA16621>