From 9e4a2de8448997924e74ace8dfd9ccd05acb2d08 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 11 Aug 2005 23:05:14 +0000 Subject: [PATCH] Fix BSD fseeko to seek from the end of the file. --- src/port/fseeko.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/port/fseeko.c b/src/port/fseeko.c index 47fb372cff..671d7382f7 100644 --- a/src/port/fseeko.c +++ b/src/port/fseeko.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/fseeko.c,v 1.18 2005/07/28 04:03:14 tgl Exp $ + * $PostgreSQL: pgsql/src/port/fseeko.c,v 1.19 2005/08/11 23:05:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -70,6 +70,7 @@ fseeko(FILE *stream, off_t offset, int whence) if (fstat(fileno(stream), &filestat) != 0) goto failure; floc = filestat.st_size; + floc += offset; if (fsetpos(stream, &floc) != 0) goto failure; #ifdef bsdi -- 2.40.0