diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-18 21:14:46 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-18 21:14:46 +0000 |
commit | 088b959d00a5df6e0d9436d6e3aec20458774ebc (patch) | |
tree | a8eb83df9dbbdd6e318252a41b40b944611f8a2e /networking | |
parent | 2ace1e3f07c819743554b317f4219e21eff06d6b (diff) | |
download | busybox-088b959d00a5df6e0d9436d6e3aec20458774ebc.tar.gz |
"Unify base64 handling" is done, remove TODO
Diffstat (limited to 'networking')
-rw-r--r-- | networking/httpd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 1f7c886de..d8ea483eb 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -765,10 +765,9 @@ static void setenv_long(const char *name, long value) ****************************************************************************/ static void decodeBase64(char *Data) { - const unsigned char *in = (const unsigned char *)Data; // The decoded size will be at most 3/4 the size of the encoded - unsigned long ch = 0; + unsigned ch = 0; int i = 0; while (*in) { @@ -798,7 +797,7 @@ static void decodeBase64(char *Data) i = 0; } } - *Data = 0; + *Data = '\0'; } #endif |