diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-02 00:48:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-02 00:48:56 +0000 |
commit | b4f316147600b29b68c7b4a1440753be2e4d4d85 (patch) | |
tree | 7c623297181a97d02ea7c873b1e8df34f28d55da /sbin/growfs/growfs.c | |
parent | b790821253b18e5408519e221871f17f7debaee8 (diff) |
use SEEK_* for lseek()
Diffstat (limited to 'sbin/growfs/growfs.c')
-rw-r--r-- | sbin/growfs/growfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/growfs/growfs.c b/sbin/growfs/growfs.c index eb2bf9c548a..3a73344d91f 100644 --- a/sbin/growfs/growfs.c +++ b/sbin/growfs/growfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: growfs.c,v 1.15 2006/03/31 08:13:07 pedro Exp $ */ +/* $OpenBSD: growfs.c,v 1.16 2006/04/02 00:48:35 deraadt Exp $ */ /* * Copyright (c) 2000 Christoph Herrmann, Thomas-Henning von Kamptz * Copyright (c) 1980, 1989, 1993 The Regents of the University of California. @@ -46,7 +46,7 @@ static const char copyright[] = Copyright (c) 1980, 1989, 1993 The Regents of the University of California.\n\ All rights reserved.\n"; -static const char rcsid[] = "$OpenBSD: growfs.c,v 1.15 2006/03/31 08:13:07 pedro Exp $"; +static const char rcsid[] = "$OpenBSD: growfs.c,v 1.16 2006/04/02 00:48:35 deraadt Exp $"; #endif /* not lint */ /* ********************************************************** INCLUDES ***** */ @@ -1497,7 +1497,7 @@ rdfs(daddr_t bno, size_t size, void *bf, int fsi) DBG_ENTER; - if (lseek(fsi, (off_t)bno * DEV_BSIZE, 0) < 0) { + if (lseek(fsi, (off_t)bno * DEV_BSIZE, SEEK_SET) < 0) { err(33, "rdfs: seek error: %ld", (long)bno); } n = read(fsi, bf, size); |