]> git.sur5r.net Git - openldap/commitdiff
Allow empty numericString matching
authorKurt Zeilenga <kurt@openldap.org>
Wed, 30 May 2001 06:06:14 +0000 (06:06 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 30 May 2001 06:06:14 +0000 (06:06 +0000)
servers/slapd/schema_init.c

index 47121340e4598b1ff171f0e219fb00944d8fee91..8b215bab94616d3fbb2e8125cbcb75d42175113d 100644 (file)
@@ -440,6 +440,7 @@ bitStringValidate(
        if( in->bv_len < 3 ) {
                return LDAP_INVALID_SYNTAX;
        }
+
        if( in->bv_val[0] != 'B' ||
                in->bv_val[1] != '\'' ||
                in->bv_val[in->bv_len-1] != '\'' )
@@ -3644,8 +3645,6 @@ numericStringValidate(
 {
        ber_len_t i;
 
-       /* disallow empty numeric strings */
-
        for(i=0; i < in->bv_len; i++) {
                if( !SLAP_NUMERIC(in->bv_val[i]) ) {
                        return LDAP_INVALID_SYNTAX;
@@ -3680,7 +3679,7 @@ numericStringNormalize(
                }
        }
 
-       assert( newval->bv_val < p );
+       assert( newval->bv_val =< p );
        assert( q <= p );
 
        /* null terminate */