diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-11-26 22:34:36 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-11-26 22:34:36 -0500 |
commit | 9a7d49d1fba666c8bfb9df0065545e85d54dbc41 (patch) | |
tree | cb90b60921660bec469c19f7ddfeb9b8793c544b /src/bin/pg_dump/pg_backup_files.c | |
parent | efb0423cc7c6e46c22816e2acc48e8f827e341ed (diff) | |
download | postgresql-9a7d49d1fba666c8bfb9df0065545e85d54dbc41.tar.gz postgresql-9a7d49d1fba666c8bfb9df0065545e85d54dbc41.zip |
Move pg_dump memory routines into pg_dumpmem.c/h and restore common.c
with its original functions. The previous function migration would
cause too many difficulties in back-patching.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_files.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_files.c b/src/bin/pg_dump/pg_backup_files.c index 76366e190bc..85373b5f8ce 100644 --- a/src/bin/pg_dump/pg_backup_files.c +++ b/src/bin/pg_dump/pg_backup_files.c @@ -26,7 +26,7 @@ */ #include "pg_backup_archiver.h" -#include "common.h" +#include "dumpmem.h" static void _ArchiveEntry(ArchiveHandle *AH, TocEntry *te); static void _StartData(ArchiveHandle *AH, TocEntry *te); |