diff options
Diffstat (limited to 'src/bin/pg_dump/pg_backup_custom.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_custom.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/pg_dump/pg_backup_custom.c b/src/bin/pg_dump/pg_backup_custom.c index e58a9f15c36..b4311e8f87b 100644 --- a/src/bin/pg_dump/pg_backup_custom.c +++ b/src/bin/pg_dump/pg_backup_custom.c @@ -19,7 +19,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.9 2001/03/22 04:00:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.10 2001/04/01 05:42:51 pjw Exp $ * * Modifications - 28-Jun-2000 - pjw@rhyme.com.au * @@ -62,8 +62,8 @@ static void _skipData(ArchiveHandle *AH); static void _skipBlobs(ArchiveHandle *AH); static void _StartBlobs(ArchiveHandle *AH, TocEntry *te); -static void _StartBlob(ArchiveHandle *AH, TocEntry *te, int oid); -static void _EndBlob(ArchiveHandle *AH, TocEntry *te, int oid); +static void _StartBlob(ArchiveHandle *AH, TocEntry *te, Oid oid); +static void _EndBlob(ArchiveHandle *AH, TocEntry *te, Oid oid); static void _EndBlobs(ArchiveHandle *AH, TocEntry *te); static void _LoadBlobs(ArchiveHandle *AH); @@ -384,7 +384,7 @@ _StartBlobs(ArchiveHandle *AH, TocEntry *te) * Must save the passed OID for retrieval at restore-time. */ static void -_StartBlob(ArchiveHandle *AH, TocEntry *te, int oid) +_StartBlob(ArchiveHandle *AH, TocEntry *te, Oid oid) { if (oid == 0) die_horribly(AH, "%s: illegal OID for BLOB (%d)\n", progname, oid); @@ -400,7 +400,7 @@ _StartBlob(ArchiveHandle *AH, TocEntry *te, int oid) * */ static void -_EndBlob(ArchiveHandle *AH, TocEntry *te, int oid) +_EndBlob(ArchiveHandle *AH, TocEntry *te, Oid oid) { _EndDataCompressor(AH, te); } |