summaryrefslogtreecommitdiff
path: root/user
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2006-03-31 12:41:38 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2006-03-31 12:41:38 +0000
commit9d8aa7cac25ee137d37fcda73317e98ea81a70af (patch)
tree50fb443f595ee194b497c3aaaef1102232af72ec /user
parent1348a19ae3f38a339026c7751268ac8f8f7621bc (diff)
downloadlibapr-9d8aa7cac25ee137d37fcda73317e98ea81a70af.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: http://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,