mirror of
https://github.com/nicolabs/ldap-plugin.git
synced 2025-09-07 05:14:24 +02:00
[FIXED JENKINS-8152]
Formatting error in the rootDN inference code. It shouldn't include attribute name. Originally-Committed-As: c99fc315dddf707dba3a2dea6a048bd76dce4c2e
This commit is contained in:
parent
8d6da512f7
commit
c32808c8d7
|
@ -325,8 +325,8 @@ public class LDAPSecurityRealm extends AbstractPasswordBasedSecurityRealm {
|
|||
DirContext ctx = new InitialDirContext(props);
|
||||
Attributes atts = ctx.getAttributes("");
|
||||
Attribute a = atts.get("defaultNamingContext");
|
||||
if(a!=null) // this entry is available on Active Directory. See http://msdn2.microsoft.com/en-us/library/ms684291(VS.85).aspx
|
||||
return a.toString();
|
||||
if(a!=null && a.get()!=null) // this entry is available on Active Directory. See http://msdn2.microsoft.com/en-us/library/ms684291(VS.85).aspx
|
||||
return a.get().toString();
|
||||
|
||||
a = atts.get("namingcontexts");
|
||||
if(a==null) {
|
||||
|
|
Loading…
Reference in a new issue