Skip to content
Snippets Groups Projects
Commit 0c0cb6a9 authored by Howard Chu's avatar Howard Chu
Browse files

ITS#3616 skip naming checks for entry with zero-length DN

parent d9df909b
No related branches found
No related tags found
No related merge requests found
......@@ -739,6 +739,10 @@ entry_naming_check(
ber_len_t cnt;
int rc = LDAP_SUCCESS;
if ( BER_BVISEMPTY( &e->e_name )) {
return LDAP_SUCCESS;
}
/*
* Get attribute type(s) and attribute value(s) of our 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