diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-01-18 19:17:05 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-01-18 19:17:05 +0000 |
commit | 69f909ba10bfba8e572cf112f4254c494952d2bb (patch) | |
tree | 588f702a700a2b1f857de8c4beb3203c0d422f53 /src/bin/pg_dump/pg_backup_archiver.c | |
parent | 83b5ae65a0b5a2dc34acac84116a456777698bf0 (diff) |
You might want to run pg_indent on pg_backup_db.c however ...
tom lane
Diffstat (limited to 'src/bin/pg_dump/pg_backup_archiver.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_archiver.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 675da67d9c8..d2b968e5702 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -15,7 +15,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.39 2002/01/18 17:13:50 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.40 2002/01/18 19:17:04 momjian Exp $ * * Modifications - 28-Jun-2000 - pjw@rhyme.com.au * @@ -64,7 +64,7 @@ * * Modifications - 18-Jan-2002 - pjw@rhyme.com.au * - Modified _tocEntryRequired to handle '<Init>/Max OID' as a special - * case (ie. as a DATA item) as per bugs reported by Bruce Momjian + * case (ie. as a DATA item) as per bugs reported by Bruce Momjian * around 17-Jan-2002. * *------------------------------------------------------------------------- @@ -1922,12 +1922,12 @@ _tocEntryRequired(TocEntry *te, RestoreOptions *ropt) res = res & ~REQ_DATA; } - /* Special case: <Init> type with <Max OID> name; this is part of - * a DATA restore even though it has SQL. - */ - if ( ( strcmp(te->desc, "<Init>") == 0 ) && ( strcmp(te->name, "Max OID") == 0) ) { + /* + * Special case: <Init> type with <Max OID> name; this is part of a + * DATA restore even though it has SQL. + */ + if ((strcmp(te->desc, "<Init>") == 0) && (strcmp(te->name, "Max OID") == 0)) res = REQ_DATA; - } /* Mask it if we only want schema */ if (ropt->schemaOnly) |