8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4fb2f9 commit 8251670Copy full SHA for 8251670
src/backend/libpq/be-secure.c
@@ -77,11 +77,6 @@
77
78
#ifdef USE_SSL
79
80
-char *ssl_cert_file;
81
-char *ssl_key_file;
82
-char *ssl_ca_file;
83
-char *ssl_crl_file;
84
-
85
static DH *load_dh_file(int keylength);
86
static DH *load_dh_buffer(const char *, size_t);
87
static DH *tmp_dh_cb(SSL *s, int is_export, int keylength);
@@ -93,6 +88,11 @@ static void close_SSL(Port *);
93
88
static const char *SSLerrmessage(void);
94
89
#endif
95
90
91
+char *ssl_cert_file;
92
+char *ssl_key_file;
+char *ssl_ca_file;
+char *ssl_crl_file;
+
96
/*
97
* How much data can be sent across a secure connection
98
* (total in both directions) before we require renegotiation.
0 commit comments