mirror of
https://github.com/postgres/postgres.git
synced 2025-09-03 15:22:11 +03:00
pgindent run for 8.3.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_tar.c,v 1.61 2007/10/28 21:55:52 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_tar.c,v 1.62 2007/11/15 21:14:41 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -177,7 +177,7 @@ InitArchiveFmt_Tar(ArchiveHandle *AH)
|
||||
ctx->tarFH = fopen(AH->fSpec, PG_BINARY_W);
|
||||
if (ctx->tarFH == NULL)
|
||||
die_horribly(NULL, modulename,
|
||||
"could not open TOC file \"%s\" for output: %s\n",
|
||||
"could not open TOC file \"%s\" for output: %s\n",
|
||||
AH->fSpec, strerror(errno));
|
||||
}
|
||||
else
|
||||
@@ -746,11 +746,12 @@ _LoadBlobs(ArchiveHandle *AH, RestoreOptions *ropt)
|
||||
else
|
||||
{
|
||||
tarClose(AH, th);
|
||||
|
||||
/*
|
||||
* Once we have found the first blob, stop at the first
|
||||
* non-blob entry (which will be 'blobs.toc'). This coding would
|
||||
* eat all the rest of the archive if there are no blobs ... but
|
||||
* this function shouldn't be called at all in that case.
|
||||
* Once we have found the first blob, stop at the first non-blob
|
||||
* entry (which will be 'blobs.toc'). This coding would eat all
|
||||
* the rest of the archive if there are no blobs ... but this
|
||||
* function shouldn't be called at all in that case.
|
||||
*/
|
||||
if (foundBlob)
|
||||
break;
|
||||
|
Reference in New Issue
Block a user