From: Quanah Gibson-Mount Date: Fri, 8 May 2009 02:27:00 +0000 (+0000) Subject: ITS#6098 X-Git-Tag: OPENLDAP_REL_ENG_2_4_17~98 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5592542fc8a9fa4e37d7ba7e4d2a3ac1431046e4;p=openldap ITS#6098 --- diff --git a/CHANGES b/CHANGES index 386df8fced..221ff927d9 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,7 @@ OpenLDAP 2.4.17 Engineering Fixed libldap tls NULL error messages (ITS#6079) Fixed liblutil opendir/closedir on windows (ITS#6041) Fixed liblutil for _GNU_SOURCE (ITS#5464,ITS#5666) + Fixed slapd cert validation (ITS#6098) Fixed slapd errno handling (ITS#6037) Fixed slapd global alloc handling (ITS#6054) Fixed slapd moduleload with static backends and modules (ITS#6016) diff --git a/servers/slapd/schema_init.c b/servers/slapd/schema_init.c index 85c62249df..7ddcbc45d4 100644 --- a/servers/slapd/schema_init.c +++ b/servers/slapd/schema_init.c @@ -156,8 +156,8 @@ enum { enum { SLAP_X509_OPT_C_VERSION = SLAP_X509_OPTION + 0, - SLAP_X509_OPT_C_ISSUERUNIQUEID = SLAP_X509_OPTION + 1, - SLAP_X509_OPT_C_SUBJECTUNIQUEID = SLAP_X509_OPTION + 2, + SLAP_X509_OPT_C_ISSUERUNIQUEID = LBER_CLASS_CONTEXT + 1, + SLAP_X509_OPT_C_SUBJECTUNIQUEID = LBER_CLASS_CONTEXT + 2, SLAP_X509_OPT_C_EXTENSIONS = SLAP_X509_OPTION + 3 };