diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-02-07 23:20:29 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-02-07 23:20:29 +0200 |
commit | e09509bd33d691b2d2d3473b4e112efd59518b31 (patch) | |
tree | 369e00c293ede4d67235e5089544f4e17e605d6d | |
parent | d66b31c94faf2b8b8aac9d273c8cd1708a54887e (diff) | |
download | postgresql-e09509bd33d691b2d2d3473b4e112efd59518b31.tar.gz postgresql-e09509bd33d691b2d2d3473b4e112efd59518b31.zip |
pg_dump: Add some const qualifiers
-rw-r--r-- | src/bin/pg_dump/pg_backup.h | 2 | ||||
-rw-r--r-- | src/bin/pg_dump/pg_backup_archiver.c | 4 | ||||
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pg_dump/pg_backup.h b/src/bin/pg_dump/pg_backup.h index 10e0dee3b87..0eef1dc8ba8 100644 --- a/src/bin/pg_dump/pg_backup.h +++ b/src/bin/pg_dump/pg_backup.h @@ -117,7 +117,7 @@ typedef struct _restoreOptions char *use_role; /* Issue SET ROLE to this */ int dataOnly; int dropSchema; - char *filename; + const char *filename; int schemaOnly; int dumpSections; int verbose; diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 424fc2e8b59..44ba913d4a1 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -126,7 +126,7 @@ static void vdie_horribly(ArchiveHandle *AH, const char *modulename, __attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 0), noreturn)); static void dumpTimestamp(ArchiveHandle *AH, const char *msg, time_t tim); -static void SetOutput(ArchiveHandle *AH, char *filename, int compression); +static void SetOutput(ArchiveHandle *AH, const char *filename, int compression); static OutputContext SaveOutput(ArchiveHandle *AH); static void RestoreOutput(ArchiveHandle *AH, OutputContext savedContext); @@ -1173,7 +1173,7 @@ archprintf(Archive *AH, const char *fmt,...) *******************************/ static void -SetOutput(ArchiveHandle *AH, char *filename, int compression) +SetOutput(ArchiveHandle *AH, const char *filename, int compression) { int fn; diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index c3973daa576..daafc2bc000 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -767,7 +767,7 @@ main(int argc, char **argv) if (plainText) { ropt = NewRestoreOptions(); - ropt->filename = (char *) filename; + ropt->filename = filename; ropt->dropSchema = outputClean; ropt->aclsSkip = aclsSkip; ropt->superuser = outputSuperuser; |