projects
/
users
/
rhaas
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e8e7b63
)
Fix create user for pgaccess.
author
Bruce Momjian
<
[email protected]
>
Sun, 14 May 2000 00:50:16 +0000
(
00:50
+0000)
committer
Bruce Momjian
<
[email protected]
>
Sun, 14 May 2000 00:50:16 +0000
(
00:50
+0000)
src/bin/pgaccess/lib/users.tcl
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pgaccess/lib/users.tcl
b/src/bin/pgaccess/lib/users.tcl
index 18204e0f722589c43a395588acfb14fb9b21cdbd..8d64ac9bf1060109e253e59fc86bdb8cb48bcc4c 100644
(file)
--- 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)!=""} {