diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-11-29 20:41:06 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-11-29 20:41:54 -0500 |
commit | 0195e5c4ab1ac710b280f7834202a7164058379c (patch) | |
tree | 4321c3ea9dd9226f53119385e58c519cfc1947c0 /src/bin/pg_dump/common.c | |
parent | 2ff36abeec948899b9a51d1c945e9fbe85e056d5 (diff) | |
download | postgresql-0195e5c4ab1ac710b280f7834202a7164058379c.tar.gz postgresql-0195e5c4ab1ac710b280f7834202a7164058379c.zip |
Clean up after recent pg_dump patches.
Fix entirely broken handling of va_list printing routines, update some
out-of-date comments, fix some bogus inclusion orders, fix NLS declarations,
fix missed realloc calls.
Diffstat (limited to 'src/bin/pg_dump/common.c')
-rw-r--r-- | src/bin/pg_dump/common.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/bin/pg_dump/common.c b/src/bin/pg_dump/common.c index 6f921f7758c..d4e906ddd0c 100644 --- a/src/bin/pg_dump/common.c +++ b/src/bin/pg_dump/common.c @@ -1,7 +1,7 @@ /*------------------------------------------------------------------------- * * common.c - * catalog routines used by pg_dump; long ago these were shared + * Catalog routines used by pg_dump; long ago these were shared * by another dump tool, but not anymore. * * Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group @@ -13,14 +13,13 @@ * *------------------------------------------------------------------------- */ -#include "postgres_fe.h" +#include "pg_backup_archiver.h" #include <ctype.h> #include "catalog/pg_class.h" - -#include "pg_backup_archiver.h" #include "dumpmem.h" +#include "dumputils.h" /* |