diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-26 15:59:37 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-26 15:59:37 +0000 |
commit | e8240f19bd99802e0ccb1738b2d2e630b6eb9087 (patch) | |
tree | d9b7c5da8a146e809140d0c8c9e270df765159f9 /networking | |
parent | 1fc6238ffab2cbd09b9ce573b99d82f3eaeb5b77 (diff) | |
download | busybox-w32-e8240f19bd99802e0ccb1738b2d2e630b6eb9087.tar.gz busybox-w32-e8240f19bd99802e0ccb1738b2d2e630b6eb9087.tar.bz2 busybox-w32-e8240f19bd99802e0ccb1738b2d2e630b6eb9087.zip |
uuencode: shrink
function old new delta
uuencode_main 427 337 -90
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-90) Total: -90 bytes
text data bss dec hex filename
734981 3028 14400 752409 b7b19 busybox_old
734889 3028 14400 752317 b7abd busybox_unstripped
Diffstat (limited to 'networking')
-rw-r--r-- | networking/wget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c index ef27ab058..bd9480ce5 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -76,9 +76,9 @@ static char *safe_fgets(char *s, int size, FILE *stream) | |||
76 | 76 | ||
77 | #if ENABLE_FEATURE_WGET_AUTHENTICATION | 77 | #if ENABLE_FEATURE_WGET_AUTHENTICATION |
78 | /* Base64-encode character string and return the string. */ | 78 | /* Base64-encode character string and return the string. */ |
79 | static char *base64enc(unsigned char *p, char *buf, int len) | 79 | static char *base64enc(const unsigned char *p, char *buf, int len) |
80 | { | 80 | { |
81 | bb_uuencode(p, buf, len, bb_uuenc_tbl_base64); | 81 | bb_uuencode(buf, p, len, bb_uuenc_tbl_base64); |
82 | return buf; | 82 | return buf; |
83 | } | 83 | } |
84 | #endif | 84 | #endif |