]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/schema.c
silence warning
[openldap] / servers / slapd / schema.c
index c5cb507770e5c2f3ca32d40892b62babd255ccae..d0dfa3021d2f7c4f52bc28278228429e2f132f08 100644 (file)
@@ -32,9 +32,7 @@ schema_info( Entry **entry, const char **text )
 
        Entry           *e;
        struct berval   vals[5];
-#ifdef SLAP_NVALUES
        struct berval   nvals[5];
-#endif
 
        e = (Entry *) SLAP_CALLOC( 1, sizeof(Entry) );
        if( e == NULL ) {
@@ -60,11 +58,7 @@ schema_info( Entry **entry, const char **text )
 
        vals[0].bv_val = "subentry";
        vals[0].bv_len = sizeof("subentry")-1;
-#ifdef SLAP_NVALUES
        if( attr_merge_one( e, ad_structuralObjectClass, vals, vals ) )
-#else
-       if( attr_merge_one( e, ad_structuralObjectClass, vals ) )
-#endif
        {
                /* Out of memory, do something about it */
                entry_free( e );
@@ -81,11 +75,7 @@ schema_info( Entry **entry, const char **text )
        vals[3].bv_val = "extensibleObject";
        vals[3].bv_len = sizeof("extensibleObject")-1;
        vals[4].bv_val = NULL;
-#ifdef SLAP_NVALUES
        if( attr_merge( e, ad_objectClass, vals, vals ) )
-#else
-       if( attr_merge( e, ad_objectClass, vals ) )
-#endif
        {
                /* Out of memory, do something about it */
                entry_free( e );
@@ -116,7 +106,6 @@ schema_info( Entry **entry, const char **text )
                        return LDAP_OTHER;
                }
 
-#ifdef SLAP_NVALUES
                nvals[0].bv_val = strchr( global_schemandn.bv_val, '=' );
                assert( nvals[0].bv_val );
                nvals[0].bv_val++;
@@ -124,9 +113,6 @@ schema_info( Entry **entry, const char **text )
                        (nvals[0].bv_val - global_schemandn.bv_val);
 
                if( attr_merge_one( e, desc, vals, nvals ) )
-#else
-               if( attr_merge_one( e, desc, vals ) )
-#endif
                {
                        /* Out of memory, do something about it */
                        entry_free( e );
@@ -158,22 +144,14 @@ schema_info( Entry **entry, const char **text )
                vals[0].bv_val = timebuf;
                vals[0].bv_len = strlen( timebuf );
 
-#ifdef SLAP_NVALUES
                if( attr_merge_one( e, ad_createTimestamp, vals, vals ) )
-#else
-               if( attr_merge_one( e, ad_createTimestamp, vals ) )
-#endif
                {
                        /* Out of memory, do something about it */
                        entry_free( e );
                        *text = "out of memory";
                        return LDAP_OTHER;
                }
-#ifdef SLAP_NVALUES
                if( attr_merge_one( e, ad_modifyTimestamp, vals, vals ) )
-#else
-               if( attr_merge_one( e, ad_modifyTimestamp, vals ) )
-#endif
                {
                        /* Out of memory, do something about it */
                        entry_free( e );