From: Kurt Zeilenga Date: Thu, 24 May 2001 00:44:23 +0000 (+0000) Subject: add missing return to at_add (ITS#1159) X-Git-Tag: OPENLDAP_REL_ENG_2_0_11~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=99934efc8ff6f71c0e0bca89a146fc7b3feb1902;p=openldap add missing return to at_add (ITS#1159) --- diff --git a/CHANGES b/CHANGES index 258992adb8..fbdff2abef 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ OpenLDAP 2.0 Change Log +OpenLDAP 2.0.11 Engineering + Fix attribute parse bug (ITS#1159) + OpenLDAP 2.0.10 Release Build Environment Fix TLS-less build (ITS#1156) diff --git a/build/version b/build/version index 9a3dbd539b..48621baaca 100644 --- a/build/version +++ b/build/version @@ -1 +1 @@ -2.0.10-Release +2.0.11-Engineering diff --git a/servers/slapd/at.c b/servers/slapd/at.c index 63eda95ad2..fd62fe0770 100644 --- a/servers/slapd/at.c +++ b/servers/slapd/at.c @@ -328,6 +328,7 @@ at_add( } code = at_insert(sat,err); + return code; } #ifdef LDAP_DEBUG