From: Howard Chu Date: Thu, 30 Aug 2018 14:47:16 +0000 (+0100) Subject: More for multival X-Git-Tag: OPENLDAP_REL_ENG_2_5_0ALPHA~67^2~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ec9a3bcca9c7d97d40d586a6796d39bb7e4fc20;p=thirdparty%2Fopenldap.git More for multival Tweak config validity check --- diff --git a/servers/slapd/back-mdb/attr.c b/servers/slapd/back-mdb/attr.c index 3473e7b77a..2a6701b2d4 100644 --- a/servers/slapd/back-mdb/attr.c +++ b/servers/slapd/back-mdb/attr.c @@ -533,7 +533,7 @@ mdb_attr_multi_config( if ( next == s || next[0] != '\0' ) goto badval; - if ( lo >= hi ) { + if ( lo > hi ) { badval: snprintf(c_reply->msg, sizeof(c_reply->msg), "invalid hi/lo thresholds" );