chiark
/
gitweb
/
~ianmdlvl
/
otter.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f5d675
)
sshkeys: Fix auth key header newline
author
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Wed, 2 Jun 2021 14:24:43 +0000
(15:24 +0100)
committer
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Wed, 2 Jun 2021 17:12:09 +0000
(18:12 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
src/sshkeys.rs
patch
|
blob
|
history
diff --git
a/src/sshkeys.rs
b/src/sshkeys.rs
index f56d2216b9d60133fc28691db64ee81c980c0a68..77a14b8e22928c1c81b453fdcf9eac2d6dc03d7c 100644
(file)
--- a/
src/sshkeys.rs
+++ b/
src/sshkeys.rs
@@
-513,6
+513,7
@@
impl Global {
.context("open static auth keys")),
} {
io::copy(&mut sf, &mut f).context("copy data into new auth keys")?;
+ writeln!(sf).context("write newline into new auth keys")?;
}
let mut f = BufWriter::new(f);