diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/uuencode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/uuencode.c b/libbb/uuencode.c index 23e2123bc..46ca79654 100644 --- a/libbb/uuencode.c +++ b/libbb/uuencode.c | |||
@@ -203,7 +203,7 @@ void FAST_FUNC read_base64(FILE *src_stream, FILE *dst_stream, int flags) | |||
203 | out_tail = out_buf; | 203 | out_tail = out_buf; |
204 | in_tail = decode_base64(&out_tail, in_buf); | 204 | in_tail = decode_base64(&out_tail, in_buf); |
205 | 205 | ||
206 | fwrite(out_buf, (out_tail - out_buf), 1, dst_stream); | 206 | fwrite(out_buf, (out_tail - out_buf), 1, dst_stream); |
207 | 207 | ||
208 | if (term_seen) { | 208 | if (term_seen) { |
209 | /* Did we consume ALL characters? */ | 209 | /* Did we consume ALL characters? */ |