diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-10-11 16:54:18 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-10-11 16:54:18 +0000 |
commit | 78f7ba13cbb912ff47fe1bd7b0f1d0796132f87f (patch) | |
tree | f6ef28baea3e5268a06b845c6056c54c5f998dcf /src/backend/commands/command.c | |
parent | b0c4598c66bb9d38cef44df7b09243fd533537ff (diff) | |
download | postgresql-78f7ba13cbb912ff47fe1bd7b0f1d0796132f87f.tar.gz postgresql-78f7ba13cbb912ff47fe1bd7b0f1d0796132f87f.zip |
Tatsuo Ishii <t-ishii@sra.co.jp> writes:
> As you can see, psql reconnect as any user if the password is same as
> foo. Of course this is due to the careless password setting, but I
> think it's better to prompt ANY TIME the user tries to switch to
> another user. Comments?
Yeah, I agree. Looks like a simple change in dbconnect():
/*
* Use old password if no new one given (if you didn't have an old
* one, fine)
*/
if (!pwparam && oldconn)
pwparam = PQpass(oldconn);
to
/*
* Use old password (if any) if no new one given and we are
* reconnecting as same user
*/
if (!pwparam && oldconn && PQuser(oldconn) && userparam &&
strcmp(PQuser(oldconn), userparam) == 0)
pwparam = PQpass(oldconn);
regards, tom lane
Diffstat (limited to 'src/backend/commands/command.c')
0 files changed, 0 insertions, 0 deletions