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_null.c | |
parent | efb0423cc7c6e46c22816e2acc48e8f827e341ed (diff) |
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_null.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_null.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_null.c b/src/bin/pg_dump/pg_backup_null.c index 252e7a403bf..201f0d9a212 100644 --- a/src/bin/pg_dump/pg_backup_null.c +++ b/src/bin/pg_dump/pg_backup_null.c @@ -23,7 +23,7 @@ */ #include "pg_backup_archiver.h" -#include "common.h" +#include "dumpmem.h" #include "dumputils.h" #include <unistd.h> /* for dup */ |