Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrasherLT committed Jul 17, 2024
1 parent f98bdf2 commit b2b659d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boringtun/src/device/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ impl Device {

let mut public_key = String::with_capacity(32);

for byte in peer.lock.tunnel.peer_static_public().as_bytes() {
for byte in peer.lock().tunnel.peer_static_public().as_bytes() {
let pub_symbol = format!("{:02X}", byte);
public_key.push_str(&pub_symbol);
}
Expand Down

0 comments on commit b2b659d

Please sign in to comment.