aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uuencode.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-01-26 07:17:30 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-01-26 07:17:30 +0000
commit14472a52801290007c082b54630f538d3e8d3209 (patch)
tree09653594812d633d592f9f28df041e99139ae3d1 /coreutils/uuencode.c
parent121914fb0f445d2bdf6a15b2e90a54df20d69de5 (diff)
downloadbusybox-w32-14472a52801290007c082b54630f538d3e8d3209.tar.gz
busybox-w32-14472a52801290007c082b54630f538d3e8d3209.tar.bz2
busybox-w32-14472a52801290007c082b54630f538d3e8d3209.zip
Pascal Brisset writes:
uuencode fails to encode binary data because it right-shifts bytes as signed chars and keeps the duplicated sign bits. The original base64_encode() from wget/http.c is broken as well, but it is only used to encode ascii data. -- Pascal git-svn-id: svn://busybox.net/trunk/busybox@8348 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r--coreutils/uuencode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c
index fd3326d80..42f629f48 100644
--- a/coreutils/uuencode.c
+++ b/coreutils/uuencode.c
@@ -59,7 +59,7 @@ static const char tbl_std[65] = {
59 * buffer of at least 1+BASE64_LENGTH(length) bytes. 59 * buffer of at least 1+BASE64_LENGTH(length) bytes.
60 * where BASE64_LENGTH(len) = (4 * ((LENGTH + 2) / 3)) 60 * where BASE64_LENGTH(len) = (4 * ((LENGTH + 2) / 3))
61 */ 61 */
62static void uuencode (const char *s, const char *store, const int length, const char *tbl) 62static void uuencode (const unsigned char *s, const char *store, const int length, const char *tbl)
63{ 63{
64 int i; 64 int i;
65 unsigned char *p = (unsigned char *)store; 65 unsigned char *p = (unsigned char *)store;