Skip to content
Snippets Groups Projects
Commit 21431725 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

fix = vs == bug

parent 72c0de5d
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment