Commit 513bbf40 authored by Tom Lane's avatar Tom Lane

Fix brain-dead placement of global variable declaration.

parent 7820ee24
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.38 2004/03/24 03:44:59 momjian Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.39 2004/03/27 03:08:42 tgl Exp $
* *
* NOTES * NOTES
* The client *requires* a valid server certificate. Since * The client *requires* a valid server certificate. Since
...@@ -145,6 +145,8 @@ static void SSLerrfree(char *buf); ...@@ -145,6 +145,8 @@ static void SSLerrfree(char *buf);
#endif #endif
#ifdef USE_SSL #ifdef USE_SSL
bool pq_initssllib = true;
static SSL_CTX *SSL_context = NULL; static SSL_CTX *SSL_context = NULL;
#endif #endif
...@@ -856,9 +858,7 @@ pq_lockingcallback(int mode, int n, const char *file, int line) ...@@ -856,9 +858,7 @@ pq_lockingcallback(int mode, int n, const char *file, int line)
} }
} }
bool pq_initssllib = true; #endif /* ENABLE_THREAD_SAFETY */
#endif /* ENABLE_THRAD_SAFETY */
static int static int
init_ssl_system(PGconn *conn) init_ssl_system(PGconn *conn)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment