]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
import fix to ITS#4669
authorPierangelo Masarati <ando@openldap.org>
Tue, 12 Sep 2006 20:44:21 +0000 (20:44 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 12 Sep 2006 20:44:21 +0000 (20:44 +0000)
CHANGES
libraries/libldap/init.c

diff --git a/CHANGES b/CHANGES
index 6236db3d04aff5201caf6c68a5c3d12d8076bf78..171ada963eb862be4fb0994d43feef77bd93c67a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,7 @@
 OpenLDAP 2.3 Change Log
 
 OpenLDAP 2.3.28 Engineering
+       Fixed libldap ldap.conf max line length (ITS#4669)
        Added ldapsearch bad filter pattern check (ITS#4647)
        Fixed slapd-monitor locking with scope "subordinate" (ITS#4668)
 
index 98b64eea9993333ce5d25b489810a471024192cb..0a6dc2dfcdd307d2532b949e8dae813fce067b5a 100644 (file)
@@ -116,7 +116,7 @@ static const struct ol_attribute {
 static void openldap_ldap_init_w_conf(
        const char *file, int userconf )
 {
-       char linebuf[128];
+       char linebuf[ LINE_MAX ];
        FILE *fp;
        int i;
        char *cmd, *opt;