10000
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 7005e4c commit 9e1c5fbCopy full SHA for 9e1c5fb
src/backend/libpq/be-secure.c
@@ -11,7 +11,7 @@
11
*
12
13
* IDENTIFICATION
14
- * $Header: /cvsroot/pgsql/src/backend/libpq/be-secure.c,v 1.8 2002/06/17 15:19:28 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/libpq/be-secure.c,v 1.9 2002/06/17 15:23:36 momjian Exp $
15
16
* Since the server static private key ($DataDir/server.key)
17
* will normally be stored unencrypted so that the database
@@ -77,6 +77,7 @@
77
#include "postgres.h"
78
79
#include <sys/types.h>
80
+#include <sys/stat.h>
81
#include <signal.h>
82
#include <fcntl.h>
83
#include <errno.h>
@@ -583,7 +584,8 @@ static int
583
584
initialize_SSL (void)
585
{
586
char fnbuf[2048];
-
587
+ struct stat buf;
588
+
589
if (!SSL_context)
590
591
SSL_library_init();
0 commit comments