diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-07-06 19:19:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-07-06 19:19:02 +0000 |
commit | 239d769e7e05e0a5ef3bd6828e93e22ef3962780 (patch) | |
tree | 9660987f1372651b78fb82023739728f2f962a6e /src/bin/pg_dump/pg_backup_custom.c | |
parent | 52783b212c7c0ef5ab2ee6bda17c8db0ed13d4ab (diff) |
pgindent run for 9.0, second run
Diffstat (limited to 'src/bin/pg_dump/pg_backup_custom.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_custom.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/bin/pg_dump/pg_backup_custom.c b/src/bin/pg_dump/pg_backup_custom.c index 3c1678ca9cd..8b7ceb64c76 100644 --- a/src/bin/pg_dump/pg_backup_custom.c +++ b/src/bin/pg_dump/pg_backup_custom.c @@ -19,7 +19,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.46 2010/06/28 02:07:02 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.47 2010/07/06 19:18:59 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -448,9 +448,9 @@ _PrintTocData(ArchiveHandle *AH, TocEntry *te, RestoreOptions *ropt) if (!ctx->hasSeek || tctx->dataState == K_OFFSET_POS_NOT_SET) { /* - * We cannot seek directly to the desired block. Instead, skip - * over block headers until we find the one we want. This could - * fail if we are asked to restore items out-of-order. + * We cannot seek directly to the desired block. Instead, skip over + * block headers until we find the one we want. This could fail if we + * are asked to restore items out-of-order. */ _readBlockHeader(AH, &blkType, &id); @@ -496,9 +496,9 @@ _PrintTocData(ArchiveHandle *AH, TocEntry *te, RestoreOptions *ropt) else if (!ctx->hasSeek) die_horribly(AH, modulename, "could not find block ID %d in archive -- " "possibly due to out-of-order restore request, " - "which cannot be handled due to non-seekable input file\n", + "which cannot be handled due to non-seekable input file\n", te->dumpId); - else /* huh, the dataPos led us to EOF? */ + else /* huh, the dataPos led us to EOF? */ die_horribly(AH, modulename, "could not find block ID %d in archive -- " "possibly corrupt archive\n", te->dumpId); @@ -836,9 +836,9 @@ _CloseArchive(ArchiveHandle *AH) /* * If possible, re-write the TOC in order to update the data offset - * information. This is not essential, as pg_restore can cope in - * most cases without it; but it can make pg_restore significantly - * faster in some situations (especially parallel restore). + * information. This is not essential, as pg_restore can cope in most + * cases without it; but it can make pg_restore significantly faster + * in some situations (especially parallel restore). */ if (ctx->hasSeek && fseeko(AH->FH, tpos, SEEK_SET) == 0) |