From d198435c51ed747624a69b075c937a773fca8f1b Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Thu, 17 Apr 2008 20:49:59 +0000 Subject: [PATCH] fix abstract class inheritance check (ITS#5474) --- servers/slapd/schema_check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.39.5