]> granicus.if.org Git - postgresql/commitdiff
More declaration mis-match fixes...
authorMarc G. Fournier <scrappy@hub.org>
Sat, 21 Sep 1996 08:19:32 +0000 (08:19 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 21 Sep 1996 08:19:32 +0000 (08:19 +0000)
src/interfaces/libpq/fe-connect.c

index c597717845482cc70a41721afdf7e5eae32b593a..0e8b369459475d5327510ae19dc6fd7dc0aeec3f 100644 (file)
@@ -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;