From 6dedc79b1e4d9f9c9f6f1094bb9a6fe0c288ec03 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 14 May 2000 00:50:16 +0000 Subject: [PATCH] Fix create user for pgaccess. --- src/bin/pgaccess/lib/users.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pgaccess/lib/users.tcl b/src/bin/pgaccess/lib/users.tcl index 18204e0f722..8d64ac9bf10 100644 --- a/src/bin/pgaccess/lib/users.tcl +++ b/src/bin/pgaccess/lib/users.tcl @@ -63,7 +63,7 @@ global PgAcVar CurrentDB } set cmd "$PgAcVar(user,action) user \"$PgAcVar(user,name)\"" if {$PgAcVar(user,password)!=""} { - set cmd "$cmd WITH PASSWORD \"$PgAcVar(user,password)\" " + set cmd "$cmd WITH PASSWORD '$PgAcVar(user,password)' " } set cmd "$cmd $PgAcVar(user,createdb) $PgAcVar(user,createuser)" if {$PgAcVar(user,validuntil)!=""} {