summaryrefslogtreecommitdiffstats
path: root/ipc/src/assuan/socket.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/src/assuan/socket.rs')
-rw-r--r--ipc/src/assuan/socket.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/src/assuan/socket.rs b/ipc/src/assuan/socket.rs
index a265e96a..8aeef881 100644
--- a/ipc/src/assuan/socket.rs
+++ b/ipc/src/assuan/socket.rs
@@ -131,7 +131,7 @@ fn read_port_and_nonce_from_string(contents: &[u8]) -> Result<Rendezvous> {
// libassuan's Cygwin compatible socket emulation.
// Format: "!<socket >%u %c %08x-%08x-%08x-%08x\x00" (scanf-like)
Some(buf) => {
- let opt_skip_nul = buf.strip_suffix("\x00").unwrap_or(buf);
+ let opt_skip_nul = buf.strip_suffix('\x00').unwrap_or(buf);
// Split into parts: port, kind of socket and nonce
let mut iter = opt_skip_nul.split_terminator(' ');
match (iter.next(), iter.next(), iter.next()) {