aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
Diffstat (limited to 'networking')
-rw-r--r--networking/wget.c4
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)
#if ENABLE_FEATURE_WGET_AUTHENTICATION
/* Base64-encode character string and return the string. */
-static char *base64enc(unsigned char *p, char *buf, int len)
+static char *base64enc(const unsigned char *p, char *buf, int len)
{
- bb_uuencode(p, buf, len, bb_uuenc_tbl_base64);
+ bb_uuencode(buf, p, len, bb_uuenc_tbl_base64);
return buf;
}
#endif