Put 'dump complete' message in the right place, so it comes out where

it's supposed to when --file option is used.
This commit is contained in:
Tom Lane 2005-03-18 17:32:55 +00:00
parent 88164799ce
commit 2e629080f7
1 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.105 2005/02/22 04:39:34 momjian Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.106 2005/03/18 17:32:55 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -400,6 +400,8 @@ RestoreArchive(Archive *AHX, RestoreOptions *ropt)
te = te->next;
}
ahprintf(AH, "--\n-- PostgreSQL database dump complete\n--\n\n");
/*
* Clean up & we're done.
*/
@ -419,8 +421,6 @@ RestoreArchive(Archive *AHX, RestoreOptions *ropt)
AH->blobConnection = NULL;
}
}
ahprintf(AH, "--\n-- PostgreSQL database dump complete\n--\n\n");
}
/*