diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-01-30 22:30:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-01-30 22:30:41 +0000 |
commit | 0cb6f35c33a2a3fd390aaa36da72e0600f205918 (patch) | |
tree | 6f685077a27f04869b4f152cbe4287c023554afb /networking/wget.c | |
parent | 5e678873f9ff7c95d43b278feee547ce989b3b20 (diff) | |
download | busybox-w32-0cb6f35c33a2a3fd390aaa36da72e0600f205918.tar.gz busybox-w32-0cb6f35c33a2a3fd390aaa36da72e0600f205918.tar.bz2 busybox-w32-0cb6f35c33a2a3fd390aaa36da72e0600f205918.zip |
fix up annoying signed/unsigned and mixed type errors
Diffstat (limited to 'networking/wget.c')
-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 9c7ed9f1d..6c6a8a7cf 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -332,11 +332,11 @@ int wget_main(int argc, char **argv) | |||
332 | #ifdef CONFIG_FEATURE_WGET_AUTHENTICATION | 332 | #ifdef CONFIG_FEATURE_WGET_AUTHENTICATION |
333 | if (target.user) { | 333 | if (target.user) { |
334 | fprintf(sfp, "Authorization: Basic %s\r\n", | 334 | fprintf(sfp, "Authorization: Basic %s\r\n", |
335 | base64enc(target.user, buf, sizeof(buf))); | 335 | base64enc((unsigned char*)target.user, buf, sizeof(buf))); |
336 | } | 336 | } |
337 | if (use_proxy && server.user) { | 337 | if (use_proxy && server.user) { |
338 | fprintf(sfp, "Proxy-Authorization: Basic %s\r\n", | 338 | fprintf(sfp, "Proxy-Authorization: Basic %s\r\n", |
339 | base64enc(server.user, buf, sizeof(buf))); | 339 | base64enc((unsigned char*)server.user, buf, sizeof(buf))); |
340 | } | 340 | } |
341 | #endif | 341 | #endif |
342 | 342 | ||