diff options
Diffstat (limited to 'src/bin/pg_dump/pg_backup_files.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_files.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bin/pg_dump/pg_backup_files.c b/src/bin/pg_dump/pg_backup_files.c index fc096211323..2f255c0c291 100644 --- a/src/bin/pg_dump/pg_backup_files.c +++ b/src/bin/pg_dump/pg_backup_files.c @@ -20,7 +20,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_files.c,v 1.25 2004/03/03 21:28:54 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_files.c,v 1.26 2005/06/21 20:45:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -457,7 +457,6 @@ _CloseArchive(ArchiveHandle *AH) * It is called just prior to the dumper's DataDumper routine. * * Optional, but strongly recommended. - * */ static void _StartBlobs(ArchiveHandle *AH, TocEntry *te) @@ -516,7 +515,6 @@ _StartBlob(ArchiveHandle *AH, TocEntry *te, Oid oid) * Called by the archiver when the dumper calls EndBlob. * * Optional. - * */ static void _EndBlob(ArchiveHandle *AH, TocEntry *te, Oid oid) @@ -531,7 +529,6 @@ _EndBlob(ArchiveHandle *AH, TocEntry *te, Oid oid) * Called by the archiver when finishing saving all BLOB DATA. * * Optional. - * */ static void _EndBlobs(ArchiveHandle *AH, TocEntry *te) @@ -543,5 +540,4 @@ _EndBlobs(ArchiveHandle *AH, TocEntry *te) if (fclose(ctx->blobToc) != 0) die_horribly(AH, modulename, "could not close large object TOC file: %s\n", strerror(errno)); - } |