Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Norbert Klasen
JLDAP
Commits
eb51e6ea
Commit
eb51e6ea
authored
Jan 27, 2004
by
Sunil Kumar
Browse files
To fix dsmlreader problem
parent
a52949f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
com/novell/ldap/rfc2251/RfcExtendedResponse.java
View file @
eb51e6ea
...
...
@@ -76,12 +76,22 @@ public class RfcExtendedResponse extends ASN1Sequence implements RfcResponse {
add
(
resultCode
);
add
(
matchedDN
);
add
(
errorMessage
);
int
counter
=
3
;
if
(
referral
!=
null
)
{
add
(
referral
);
referralIndex
=
counter
++;
}
if
(
responseName
!=
null
)
{
responseNameIndex
=
counter
++;
add
(
responseName
);
}
if
(
response
!=
null
)
{
add
(
response
);
responseIndex
=
counter
++;
}
return
;
}
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment