diff options
author | Tom Lane | 2014-03-17 01:43:52 +0000 |
---|---|---|
committer | Tom Lane | 2014-03-17 01:43:52 +0000 |
commit | fecc9e23a34b8d99dbecdc28acb25eeb622faeed (patch) | |
tree | 1a67f73200a1277fabcfd66c82e79233d0b94e0e | |
parent | 665515539f6a6ea05e73cf565eab671afbc3c02d (diff) |
Fix advertised dispsize for libpq's sslmode connection parameter.
"8" was correct back when "disable" was the longest allowed value, but
since "verify-full" was added, it should be "12". Given the lack of
complaints, I wouldn't be surprised if nobody is actually using these
values ... but still, if they're in the API, they should be right.
Noticed while pursuing a different problem. It's been wrong for quite
a long time, so back-patch to all supported branches.
-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 d897a408478..02ef3dc7b35 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -215,7 +215,7 @@ static const PQconninfoOption PQconninfoOptions[] = { * to exclude them since none of them are mandatory. */ {"sslmode", "PGSSLMODE", DefaultSSLMode, NULL, - "SSL-Mode", "", 8}, /* sizeof("disable") == 8 */ + "SSL-Mode", "", 12}, /* sizeof("verify-full") == 12 */ {"sslcert", "PGSSLCERT", NULL, NULL, "SSL-Client-Cert", "", 64}, |