mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
base64: don't try to remove LF when decoding
This commit is contained in:
parent
9b638d99a7
commit
3f90b75ffc
1 changed files with 0 additions and 1 deletions
|
@ -115,7 +115,6 @@ fn decode(input: &mut Reader, ignore_garbage: bool) {
|
||||||
num == '+' as u8 || num == '/' as u8)
|
num == '+' as u8 || num == '/' as u8)
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
to_decode = to_decode.as_slice().replace("\n", "");
|
|
||||||
to_decode.as_slice()
|
to_decode.as_slice()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue