[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:
Kohsuke Kawaguchi 2012-01-24 14:08:10 -08:00
parent 8d6da512f7
commit c32808c8d7

View file

@ -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) {