diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pgaccess/lib/users.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
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)!=""} { |