Skip to content

Commit

Permalink
Fix Bug LDAPUrl fails to parse attribute correctly (ITS#3049)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunil Kumar committed Apr 30, 2004
1 parent f6428fe commit 0df870c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion com/novell/ldap/LDAPUrl.java
Expand Up @@ -697,7 +697,7 @@ private void parseURL( String url) throws MalformedURLException
// Parse out the attributes
int scopeStart = url.indexOf('?', scanStart);
if( scopeStart < 0)
scopeStart = scanEnd - 1;
scopeStart = scanEnd;
attrs = parseList( url, ',', attrsStart + 1, scopeStart);
if( Debug.LDAP_DEBUG) {
if( attrs != null) {
Expand Down

0 comments on commit 0df870c

Please sign in to comment.