From: Julio Sánchez Fernández Date: Wed, 24 May 2000 20:03:58 +0000 (+0000) Subject: Backout last change, it belongs in syntaxes, not attribute types X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~2877 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=851e2de03d4a1559fec9484c712c7cb6281a51c8;p=openldap Backout last change, it belongs in syntaxes, not attribute types --- diff --git a/servers/slapd/at.c b/servers/slapd/at.c index 40964b217b..14c20bd19f 100644 --- a/servers/slapd/at.c +++ b/servers/slapd/at.c @@ -402,7 +402,6 @@ at_add( Syntax *syn; int code; char *cname; - LDAP_SCHEMA_EXTENSION_ITEM **ext; if ( at->at_names && at->at_names[0] ) { cname = at->at_names[0]; @@ -448,8 +447,6 @@ at_add( sat->sat_equality = sat->sat_sup->sat_equality; sat->sat_ordering = sat->sat_sup->sat_ordering; sat->sat_substr = sat->sat_sup->sat_substr; - sat->sat_binary = sat->sat_sup->sat_binary; - sat->sat_not_h_r = sat->sat_sup->sat_not_h_r; } if ( at->at_syntax_oid ) { @@ -525,22 +522,6 @@ at_add( } } - if ( sat->sat_extensions ) { - for ( ext = sat->sat_extensions; *ext; ext++ ) { - if ( strcmp((*ext)->lsei_name, "X-BINARY-TRANSFER-REQUIRED") == 0 && - (*ext)->lsei_values && - (*ext)->lsei_values[0] && - strcasecmp((*ext)->lsei_values[0], "true") == 0 ) { - sat->sat_binary = 1; - } else if ( strcmp((*ext)->lsei_name, "X-NOT-HUMAN-READABLE") == 0 && - (*ext)->lsei_values && - (*ext)->lsei_values[0] && - strcasecmp((*ext)->lsei_values[0], "true") == 0 ) { - sat->sat_not_h_r = 1; - } - } - } - code = at_insert(sat,err); return code; }