We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab25ff commit 3fd6d32Copy full SHA for 3fd6d32
src/bin/pg_dump/pg_backup_archiver.c
@@ -15,7 +15,7 @@
15
*
16
17
* IDENTIFICATION
18
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.60 2002/10/25 01:33:17 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.61 2002/10/25 03:47:30 momjian Exp $
19
20
*-------------------------------------------------------------------------
21
*/
@@ -2347,7 +2347,7 @@ bool
2347
checkSeek(FILE *fp)
2348
{
2349
2350
- if (fseek(fp, 0, SEEK_CUR) != 0)
+ if (fseeko(fp, 0, SEEK_CUR) != 0)
2351
return false;
2352
else if (sizeof(off_t) > sizeof(long))
2353
/*
0 commit comments