mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 02:59:34 -05:00
fix = vs == bug
This commit is contained in:
parent
72c0de5d95
commit
21431725fc
1 changed files with 1 additions and 1 deletions
|
|
@ -325,7 +325,7 @@ explode_name( const char *name, int notypes, int is_type )
|
|||
state = INQUOTE;
|
||||
break;
|
||||
case '=':
|
||||
if( state = OUTQUOTE ) have_equals++;
|
||||
if( state == OUTQUOTE ) have_equals++;
|
||||
break;
|
||||
case '+':
|
||||
if (is_type == NAME_TYPE_LDAP_RDN)
|
||||
|
|
|
|||
Loading…
Reference in a new issue