Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3fd6d32

Browse files
committed
Change to fseeko(), per Philip.
1 parent 7ab25ff commit 3fd6d32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_dump/pg_backup_archiver.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
*
1717
* IDENTIFICATION
18-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.60 2002/10/25 01:33:17 momjian Exp $
18+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.61 2002/10/25 03:47:30 momjian Exp $
1919
*
2020
*-------------------------------------------------------------------------
2121
*/
@@ -2347,7 +2347,7 @@ bool
23472347
checkSeek(FILE *fp)
23482348
{
23492349

2350-
if (fseek(fp, 0, SEEK_CUR) != 0)
2350+
if (fseeko(fp, 0, SEEK_CUR) != 0)
23512351
return false;
23522352
else if (sizeof(off_t) > sizeof(long))
23532353
/*

0 commit comments

Comments
 (0)