summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-secure.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-09-27 23:39:14 +0000
committerBruce Momjian <bruce@momjian.us>2004-09-27 23:39:14 +0000
commitb534a5605f32df19e903eeb35d7632ffe7c0a0a3 (patch)
tree004fcce03084afbd6eb7a984270817baa871bc9c /src/interfaces/libpq/fe-secure.c
parente1c8b37afb5669542272585245b0706fcad174da (diff)
downloadpostgresql-b534a5605f32df19e903eeb35d7632ffe7c0a0a3.tar.gz
Remove use of large BUFSIZ for buffers and use the proper struct sizes.
This greatly helps threaded libpq programs.
Diffstat (limited to 'src/interfaces/libpq/fe-secure.c')
-rw-r--r--src/interfaces/libpq/fe-secure.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/libpq/fe-secure.c b/src/interfaces/libpq/fe-secure.c
index 3fbeffe01e..d4f93733da 100644
--- a/src/interfaces/libpq/fe-secure.c
+++ b/src/interfaces/libpq/fe-secure.c
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.52 2004/09/26 22:51:49 tgl Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.53 2004/09/27 23:38:45 momjian Exp $
*
* NOTES
* [ Most of these notes are wrong/obsolete, but perhaps not all ]
@@ -512,7 +512,7 @@ verify_peer(PGconn *conn)
{
struct hostent hpstr;
- char buf[BUFSIZ];
+ char buf[sizeof(struct hostent)];
int herrno = 0;
/*
@@ -598,7 +598,7 @@ load_dh_file(int keylength)
#ifdef WIN32
return NULL;
#else
- char pwdbuf[BUFSIZ];
+ char pwdbuf[sizeof(struct passwd)];
struct passwd pwdstr;
struct passwd *pwd = NULL;
FILE *fp;
@@ -745,7 +745,7 @@ client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey)
#ifdef WIN32
return 0;
#else
- char pwdbuf[BUFSIZ];
+ char pwdbuf[sizeof(struct passwd)];
struct passwd pwdstr;
struct passwd *pwd = NULL;
struct stat buf,
@@ -952,7 +952,7 @@ initialize_SSL(PGconn *conn)
{
#ifndef WIN32
struct stat buf;
- char pwdbuf[BUFSIZ];
+ char pwdbuf[sizeof(struct passwd)];
struct passwd pwdstr;
struct passwd *pwd = NULL;
char fnbuf[MAXPGPATH];