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

Fix empty suffix separator test.

parent b56b9859
Branches
Tags
No related merge requests found
......@@ -520,7 +520,7 @@ select_backend(
}
if ( (len < dnlen) && !(DN_SEPARATOR( dn[(dnlen-len)-1] )) ) {
if ( len && len < dnlen && !DN_SEPARATOR( dn[(dnlen-len)-1] ) ) {
/* make sure we have a separator */
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment