Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f2c8f27

Browse files
committed
Portability fix from Steve Nicolai.
1 parent 0967057 commit f2c8f27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_dump/pg_backup_null.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
*
1919
* IDENTIFICATION
20-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_null.c,v 1.5 2001/03/22 04:00:13 momjian Exp $
20+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_null.c,v 1.6 2001/03/24 23:11:14 tgl Exp $
2121
*
2222
* Modifications - 09-Jul-2000 - pjw@rhyme.com.au
2323
*
@@ -98,7 +98,7 @@ _EndData(ArchiveHandle *AH, TocEntry *te)
9898
static void
9999
_PrintTocData(ArchiveHandle *AH, TocEntry *te, RestoreOptions *ropt)
100100
{
101-
if (*te->dataDumper)
101+
if (te->dataDumper)
102102
{
103103
AH->currToc = te;
104104
(*te->dataDumper) ((Archive *) AH, te->oid, te->dataDumperArg);

0 commit comments

Comments
 (0)