aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-07 21:17:01 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-07 21:17:01 +0000
commitea733aa997f0d3d71ae530485706b5ed76d02fd5 (patch)
treeeb292ca3bd46c02a8e242c9c008ca21277caa041 /src
parenta409f40ea8d1bbf028d0d472f303518db531676c (diff)
downloadpostgresql-ea733aa997f0d3d71ae530485706b5ed76d02fd5.tar.gz
postgresql-ea733aa997f0d3d71ae530485706b5ed76d02fd5.zip
Fix a couple of small things from D'Arcy's last patch
Submitted by: D'Arcy Cain
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/pg_dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 5de0b76d5bd..4910f921c8d 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -20,7 +20,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.10 1996/10/07 03:30:37 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.11 1996/10/07 21:17:01 scrappy Exp $
*
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
*
@@ -1193,7 +1193,7 @@ dumpAggs(FILE* fout, AggInfo* agginfo, int numAggs,
void dumpTables(FILE* fout, TableInfo *tblinfo, int numTables,
InhInfo *inhinfo, int numInherits,
- TypeInfo *tinfo, int numTypes, char *tablename)
+ TypeInfo *tinfo, int numTypes, const char *tablename)
{
int i,j,k;
char q[MAXQUERYLEN];
@@ -1305,7 +1305,7 @@ dumpIndices(FILE* fout, IndInfo* indinfo, int numIndices,
int i;
int tableInd;
const char *attname; /* the name of the indexed attribute */
- const char *funcname; /* the name of the function to comput the index key from*/
+ char *funcname; /* the name of the function to comput the index key from*/
int indkey;
char q[MAXQUERYLEN];