diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-01-25 22:44:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-01-25 22:44:31 +0000 |
commit | fd5437c78b1d5e91ca034a5d4a820e668af33850 (patch) | |
tree | 5f0db4285ee7e7ae503578ed3546c2a0b4bde77e /src/bin/pg_dump/pg_backup_custom.c | |
parent | 5ca9687fe4e5f44cc4d23ed4263236aec6e6764d (diff) |
Fix breakage created by addition of separate 'acl pass' in pg_dump.
Also clean up incredibly poor style in TocIDRequired() usage.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_custom.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_custom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_backup_custom.c b/src/bin/pg_dump/pg_backup_custom.c index d3581a47871..e4adcf75892 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.29 2004/03/03 21:28:54 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.30 2005/01/25 22:44:31 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -442,7 +442,7 @@ _PrintTocData(ArchiveHandle *AH, TocEntry *te, RestoreOptions *ropt) while (id != te->dumpId) { - if ((TocIDRequired(AH, id, ropt) & 2) != 0) + if ((TocIDRequired(AH, id, ropt) & REQ_DATA) != 0) die_horribly(AH, modulename, "Dumping a specific TOC data block out of order is not supported" " without ID on this input stream (fseek required)\n"); |