Commit 6e077b0a authored by Marc G. Fournier's avatar Marc G. Fournier

Further modifications for fixing createuser bug...

Submitted by: Rick Weldon <rick@wisetech.com>
parent 22113f81
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.7 1996/07/25 06:46:35 julian Exp $ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.8 1996/07/27 02:40:45 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1111,10 +1111,10 @@ main(int argc, char** argv) ...@@ -1111,10 +1111,10 @@ main(int argc, char** argv)
extern char* optarg; extern char* optarg;
extern int optind; extern int optind;
char* dbname = NULL; char* dbname = (char *)NULL;
char* host = NULL; char* host = (char *)NULL;
char* port = NULL; char* port = (char *)NULL;
char* qfilename = NULL; char* qfilename = (char *)NULL;
char errbuf[ERROR_MSG_LENGTH]; char errbuf[ERROR_MSG_LENGTH];
PsqlSettings settings; PsqlSettings settings;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment