diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-03-02 13:49:39 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-03-02 13:49:39 +0100 |
commit | 7ab1bc2939f32aa995bdb81eaac3bb28f908e980 (patch) | |
tree | 79df7e4ce1b2ea07fa4da8576fe2faa455862dcd /src/backend/libpq/be-secure-openssl.c | |
parent | 4ac30ba4f29d4b586b131404b0d514f16501272a (diff) |
Fix outdated references to guc.c
Commit 0a20ff54f split out the GUC variables from guc.c into a new file
guc_tables.c. This updates comments referencing guc.c regarding variables
which are now in guc_tables.c.
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/6B50C70C-8C1F-4F9A-A7C0-EEAFCC032406@yesql.se
Diffstat (limited to 'src/backend/libpq/be-secure-openssl.c')
-rw-r--r-- | src/backend/libpq/be-secure-openssl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/libpq/be-secure-openssl.c b/src/backend/libpq/be-secure-openssl.c index b3747f4fd87..685aa2ed69d 100644 --- a/src/backend/libpq/be-secure-openssl.c +++ b/src/backend/libpq/be-secure-openssl.c @@ -1557,7 +1557,8 @@ X509_NAME_to_cstring(X509_NAME *name) * Convert TLS protocol version GUC enum to OpenSSL values * * This is a straightforward one-to-one mapping, but doing it this way makes - * guc.c independent of OpenSSL availability and version. + * the definitions of ssl_min_protocol_version and ssl_max_protocol_version + * independent of OpenSSL availability and version. * * If a version is passed that is not supported by the current OpenSSL * version, then we return -1. If a nonnegative value is returned, |