commit | f2ec37902a2a6aa54ab616bfa7f6d296bddc9b68 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Mon Jan 26 07:17:30 2004 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Mon Jan 26 07:17:30 2004 +0000 |
tree | 09653594812d633d592f9f28df041e99139ae3d1 | |
parent | 7018385fe71329af2f685b7859fbf8f6cedc8325 [diff] |
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