Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6dedc79

Browse files
committed
Fix create user for pgaccess.
1 parent e8e7b63 commit 6dedc79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pgaccess/lib/users.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ global PgAcVar CurrentDB
6363
}
6464
set cmd "$PgAcVar(user,action) user \"$PgAcVar(user,name)\""
6565
if {$PgAcVar(user,password)!=""} {
66-
set cmd "$cmd WITH PASSWORD \"$PgAcVar(user,password)\" "
66+
set cmd "$cmd WITH PASSWORD '$PgAcVar(user,password)' "
6767
}
6868
set cmd "$cmd $PgAcVar(user,createdb) $PgAcVar(user,createuser)"
6969
if {$PgAcVar(user,validuntil)!=""} {

0 commit comments

Comments
 (0)