Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
openldap
JLDAP
Commits
0c5c4f69
Commit
0c5c4f69
authored
May 17, 2006
by
Anil Kumar Kommuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m_responseNameIndex is allowed to get values >= 0
parent
f7c8ec42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
com/novell/ldap/rfc2251/RfcIntermediateResponse.java
com/novell/ldap/rfc2251/RfcIntermediateResponse.java
+1
-1
No files found.
com/novell/ldap/rfc2251/RfcIntermediateResponse.java
View file @
0c5c4f69
...
...
@@ -125,7 +125,7 @@ public class RfcIntermediateResponse extends ASN1Sequence implements RfcResponse
*/
public
final
RfcLDAPOID
getResponseName
()
{
return
(
m_responseNameIndex
!
=
0
)
?
(
RfcLDAPOID
)
get
(
m_responseNameIndex
)
return
(
m_responseNameIndex
>
=
0
)
?
(
RfcLDAPOID
)
get
(
m_responseNameIndex
)
:
null
;
}
...
...
Write
Preview
Markdown
is supported
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