]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/at.c
ITS#5173 simplify defer open behavior
[openldap] / servers / slapd / at.c
index dab8ebd927b1052b36a8fa0ad6c7c1e90bc459fb..e70f10e969ba1eaaa5a1e59fec80366a3c6fdb82 100644 (file)
@@ -754,9 +754,12 @@ at_add(
                        goto error_return;
                }
 
-               if( sat->sat_syntax != NULL && sat->sat_syntax != syn ) {
-                       code = SLAP_SCHERR_ATTR_BAD_SUP;
-                       goto error_return;
+               if ( sat->sat_syntax != NULL && sat->sat_syntax != syn ) {
+                       /* BEWARE: no loop detection! */
+                       if ( syn_is_sup( sat->sat_syntax, syn ) ) {
+                               code = SLAP_SCHERR_ATTR_BAD_SUP;
+                               goto error_return;
+                       }
                }
 
                sat->sat_syntax = syn;