K 10 svn:author V 7 rgrimes K 8 svn:date V 27 1995-07-07T07:27:22.000000Z K 7 svn:log V 551 Branch: RELENG_2_0_5 cvs update -j 1.3 traverse.c: ---------------------------- revision 1.3 date: 1995/06/24 17:07:21; author: joerg; state: Exp; lines: +4 -2 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 ---------------------------- END