Skip to content

Commit

Permalink
Fix API
Browse files Browse the repository at this point in the history
  • Loading branch information
mmastrac committed Feb 25, 2025
1 parent c46deb1 commit 7d7431e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/pgrust/src/handshake/client_state_machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ impl ConnectionState {
(AuthenticationMD5Password as md5) => {
*sent_auth = true;
trace!("auth md5");
let md5_hash = gel_auth::md5::md5_password(&credentials.password, &credentials.username, &md5.salt());
let md5_hash = gel_auth::md5::md5_password(&credentials.password, &credentials.username, md5.salt());
update.auth(AuthType::Md5);
update.send(builder::PasswordMessage {
password: &md5_hash,
Expand Down

0 comments on commit 7d7431e

Please sign in to comment.