From: Pierangelo Masarati Date: Thu, 17 Apr 2008 20:49:59 +0000 (+0000) Subject: fix abstract class inheritance check (ITS#5474) X-Git-Tag: OPENLDAP_REL_ENG_2_4_9~20^2~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d198435c51ed747624a69b075c937a773fca8f1b;p=openldap fix abstract class inheritance check (ITS#5474) --- diff --git a/servers/slapd/schema_check.c b/servers/slapd/schema_check.c index b370876da6..62f2d704c2 100644 --- a/servers/slapd/schema_check.c +++ b/servers/slapd/schema_check.c @@ -356,7 +356,7 @@ got_soc: } } - if( xc == NULL ) { + if( xc != NULL ) { snprintf( textbuf, textlen, "instanstantiation of " "abstract objectClass '%s' not allowed", aoc->a_vals[i].bv_val );