We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
a fix similar to #83 should be applied here also (ldap.go)
func addControlDescriptions(packet *ber.Packet) { packet.Description = "Controls" for _, child := range packet.Children { child.Description = "Control" child.Children[0].Description = "Control Type (" + ControlDescription(child.Children[0].Value.(string)) + ")" value := child.Children[1] if len(child.Children) == 3 { child.Children[1].Description = "Criticality" value = child.Children[2] } value.Description = "Control Value"
The text was updated successfully, but these errors were encountered:
fix panic in addControlDescriptions()
dee83a3
apply similar patch like in go-ldap#83, closes go-ldap#86
29b8f79
* apply similar patch like in go-ldap#83, closes go-ldap#86 * add tests for adding ControlDescriptions
Successfully merging a pull request may close this issue.
a fix similar to #83 should be applied here also (ldap.go)
The text was updated successfully, but these errors were encountered: