From owner-cvs-sbin Tue Jun 20 20:55:21 1995 Return-Path: cvs-sbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA29387 for cvs-sbin-outgoing; Tue, 20 Jun 1995 20:55:21 -0700 Received: (from dima@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id UAA29373 ; Tue, 20 Jun 1995 20:55:15 -0700 Date: Tue, 20 Jun 1995 20:55:15 -0700 From: Dima Ruban Message-Id: <199506210355.UAA29373@freefall.cdrom.com> To: CVS-commiters, cvs-sbin Subject: cvs commit: src/sbin/quotacheck quotacheck.c Sender: cvs-sbin-owner@freebsd.org Precedence: bulk dima 95/06/20 20:55:15 Modified: sbin/quotacheck quotacheck.c Log: `dev_bsize' must be reset to 1 before the bread() or quotacheck -a will fail after the first partition (because dev_bsize is 512 and is messes up the superblock read of the second partition) Submitted by: dillon@best.com (Mattew Dillon) From owner-cvs-sbin Sat Jun 24 10:07:28 1995 Return-Path: cvs-sbin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA16639 for cvs-sbin-outgoing; Sat, 24 Jun 1995 10:07:28 -0700 Received: (from joerg@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA16621 ; Sat, 24 Jun 1995 10:07:23 -0700 Date: Sat, 24 Jun 1995 10:07:23 -0700 From: Joerg Wunsch Message-Id: <199506241707.KAA16621@freefall.cdrom.com> To: CVS-commiters, cvs-sbin Subject: cvs commit: src/sbin/dump traverse.c Sender: cvs-sbin-owner@freebsd.org Precedence: bulk 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