mirror of
https://github.com/postgres/postgres.git
synced 2026-06-10 17:20:31 -04:00
Don't make "replication" magical as a user name, only as a database name, in pg_hba.conf.
Per gripe from Josh Berkus. Backported from commit ed557a373c.
This commit is contained in:
parent
159c47dc71
commit
290bb9b61c
1 changed files with 2 additions and 0 deletions
|
|
@ -490,6 +490,8 @@ check_role(const char *role, Oid roleid, char *param_str)
|
|||
return true;
|
||||
}
|
||||
else if (strcmp(tok, role) == 0 ||
|
||||
(strcmp(tok, "replication\n") == 0 &&
|
||||
strcmp(role,"replication") ==0) ||
|
||||
strcmp(tok, "all\n") == 0)
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue