summaryrefslogtreecommitdiff
path: root/user
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2006-03-31 12:41:38 +0000
committerJoe Orton <jorton@apache.org>2006-03-31 12:41:38 +0000
commit2dfcf03c322bbf3c80dad1104b3acc207fcca9b1 (patch)
tree50fb443f595ee194b497c3aaaef1102232af72ec /user
parent1ab1cd8510bcb71c61d3bd97f038ccf19bae6ca1 (diff)
downloadapr-2dfcf03c322bbf3c80dad1104b3acc207fcca9b1.tar.gz
* user/unix/userinfo.c (PWBUF_SIZE): Bump to 2048 to avoid issues with
LDAP-backed lookups on FreeBSD. PR: 39075 git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@390410 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'user')
-rw-r--r--user/unix/userinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/unix/userinfo.c b/user/unix/userinfo.c
index 3eb74113b..815bf7e50 100644
--- a/user/unix/userinfo.c
+++ b/user/unix/userinfo.c
@@ -30,7 +30,7 @@
#define APR_WANT_MEMFUNC
#include "apr_want.h"
-#define PWBUF_SIZE 512
+#define PWBUF_SIZE 2048
static apr_status_t getpwnam_safe(const char *username,
struct passwd *pw,