Skip to content

typo fix #305

New issue

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

Merged
merged 2 commits into from
Jul 8, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
typo fix
  • Loading branch information
guilhermewop committed May 8, 2018
commit 99153dcbce5cefb93db32e1402e134d18873ee66
4 changes: 3 additions & 1 deletion lib/net/ldap/connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,8 @@ def search(args = nil)
end
end



# count number of pages of results
payload[:page_count] ||= 0
payload[:page_count] += 1
Expand Down Expand Up @@ -606,7 +608,7 @@ def password_modify(args)
pdu = queued_read(message_id)

if !pdu || pdu.app_tag != Net::LDAP::PDU::ExtendedResponse
raise Net::LDAP::ResponseMissingError, "response missing or invalid"
raise Net::LDAP::ResponseMissingOrInvalidError, "response missing or invalid"
end

pdu
Expand Down