summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-09-21 08:19:32 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-09-21 08:19:32 +0000
commit2857a3899ed89cc56d5cdc859fdaf2cdbbc84df8 (patch)
treea4d426729fe4ad5947180b4506bbae93a5d3f32e
parent52f9fcd737a420e3d3ac570344d3d90541bdb850 (diff)
downloadpostgresql-2857a3899ed89cc56d5cdc859fdaf2cdbbc84df8.tar.gz
More declaration mis-match fixes...
-rw-r--r--src/interfaces/libpq/fe-connect.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c
index c597717845..0e8b369459 100644
--- a/src/interfaces/libpq/fe-connect.c
+++ b/src/interfaces/libpq/fe-connect.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.3 1996/08/19 19:28:17 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.4 1996/09/21 08:19:32 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -64,7 +64,11 @@ static void closePGconn(PGconn *conn);
* ----------------
*/
PGconn*
-PQsetdb(char *pghost, char* pgport, char* pgoptions, char* pgtty, char* dbName)
+PQsetdb(const char *pghost,
+ const char *pgport,
+ const char *pgoptions,
+ const char *pgtty,
+ const char *dbName)
{
PGconn *conn;
char *tmp;