diff options
author | David Rowley <drowley@postgresql.org> | 2025-04-21 13:50:50 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2025-04-21 13:50:50 +1200 |
commit | 78eda9e2648ab3f8c0df0d4aca53eb0ad6399c59 (patch) | |
tree | 224d07fe7e8d79890c81f305f6f8f0ca89f5852f /src/interfaces | |
parent | 84fd3bc141039b32f25c3c9f6157163a56ab5f66 (diff) | |
download | postgresql-78eda9e2648ab3f8c0df0d4aca53eb0ad6399c59.tar.gz postgresql-78eda9e2648ab3f8c0df0d4aca53eb0ad6399c59.zip |
Fix a few more duplicate words in comments
Similar to 84fd3bc14 but these ones were found using a regex that can span
multiple lines.
Author: David Rowley <dgrowleyml@gmail.com>
Discussion: https://postgr.es/m/CAApHDvrMcr8XD107H3NV=WHgyBcu=sx5+7=WArr-n_cWUqdFXQ@mail.gmail.com
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index e08b344276f..bd51e6115cf 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -1833,7 +1833,7 @@ pqConnectOptions2(PGconn *conn) * sslmode='allow' or sslmode='disable' either. If a user goes through * the trouble of setting sslnegotiation='direct', they probably * intend to use SSL, and sslmode=disable or allow is probably a user - * user mistake anyway. + * mistake anyway. */ if (conn->sslnegotiation[0] == 'd' && conn->sslmode[0] != 'r' && conn->sslmode[0] != 'v') |