From d999d312c488098f42a5a4b3f0f7aa727c93dee9 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 29 Jul 2005 18:31:05 +0000 Subject: [PATCH] Use BIGPATHBUFLEN for the length of a line buffer. --- authenticate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authenticate.c b/authenticate.c index 0b338f34..12f142ec 100644 --- a/authenticate.c +++ b/authenticate.c @@ -223,7 +223,7 @@ char *auth_server(int f_in, int f_out, int module, char *host, char *addr, { char *users = lp_auth_users(module); char challenge[MD4_SUM_LENGTH*2]; - char line[MAXPATHLEN]; + char line[BIGPATHBUFLEN]; char secret[512]; char pass2[MD4_SUM_LENGTH*2]; char *tok, *pass; -- 2.34.1