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

Fix == typo

parent 59305df8
No related branches found
No related tags found
No related merge requests found
......@@ -38,8 +38,8 @@ int ldap_dn2domain(
char **domainp)
{
int i;
char* domain = NULL;
char ** dn;
char *domain = NULL;
char **dn;
if( dn_in == NULL || domainp == NULL ) {
return -1;
......@@ -79,7 +79,7 @@ int ldap_dn2domain(
dc = &rdn[0][sizeof(LDAP_DCOID)-1];
} else {
dc == NULL;
dc = NULL;
}
if( dc != NULL ) {
......
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