version 1.11, 1999/06/18 21:53:10
|
version 1.11.2.1, 1999/07/09 12:41:10
|
Line 232 get_substring_filter(
|
Line 232 get_substring_filter(
|
ber_len_t len; |
ber_len_t len; |
ber_tag_t rc; |
ber_tag_t rc; |
char *val, *last; |
char *val, *last; |
int syntax; |
|
|
|
Debug( LDAP_DEBUG_FILTER, "begin get_substring_filter\n", 0, 0, 0 ); |
Debug( LDAP_DEBUG_FILTER, "begin get_substring_filter\n", 0, 0, 0 ); |
|
|
Line 244 get_substring_filter(
|
Line 243 get_substring_filter(
|
if ( ber_scanf( ber, "{a" /*}*/, &f->f_sub_type ) == LBER_ERROR ) { |
if ( ber_scanf( ber, "{a" /*}*/, &f->f_sub_type ) == LBER_ERROR ) { |
return( LDAP_PROTOCOL_ERROR ); |
return( LDAP_PROTOCOL_ERROR ); |
} |
} |
attr_normalize( f->f_sub_type ); |
|
syntax = attr_syntax( f->f_sub_type ); |
|
f->f_sub_initial = NULL; |
f->f_sub_initial = NULL; |
f->f_sub_any = NULL; |
f->f_sub_any = NULL; |
f->f_sub_final = NULL; |
f->f_sub_final = NULL; |
Line 269 get_substring_filter(
|
Line 266 get_substring_filter(
|
} |
} |
return( LDAP_INVALID_SYNTAX ); |
return( LDAP_INVALID_SYNTAX ); |
} |
} |
value_normalize( val, syntax ); |
|
|
|
switch ( tag ) { |
switch ( tag ) { |
#ifdef LDAP_COMPAT30 |
#ifdef LDAP_COMPAT30 |