diff options
| author | Juli Mallett <jmallett@FreeBSD.org> | 2002-04-20 03:33:40 +0000 |
|---|---|---|
| committer | Juli Mallett <jmallett@FreeBSD.org> | 2002-04-20 03:33:40 +0000 |
| commit | 6fa41254914d695973c6f56795593baf2f228ffa (patch) | |
| tree | 655b5d32e3d087731723a6bc318760917bf162a6 /usr.bin | |
| parent | c8268a9fbcd97fc88625a4bb5e6549922298e40c (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/uudecode/uudecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/uudecode/uudecode.c b/usr.bin/uudecode/uudecode.c index 4f54aaa08e886..07b9008fcc81f 100644 --- a/usr.bin/uudecode/uudecode.c +++ b/usr.bin/uudecode/uudecode.c @@ -349,7 +349,7 @@ base64_decode(stream) rv = b64_pton(stream, out, (sizeof(out) / sizeof(out[0]))); if (rv == -1) errx(1, "b64_pton: error decoding base64 input stream"); - printf("%s", out); + fwrite(out, 1, rv, stdout); } static void |
