Skip to content
Snippets Groups Projects
Commit 99bc7e5f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

oops, the decode() function got its arguments reversed in my cleanup

operation!
parent 0b1f7995
No related branches found
No related tags found
Loading
......@@ -76,7 +76,7 @@ static void decodeQuantum(unsigned char *dest, const char *src)
* Given a base64 string at src, decode it into the memory pointed to by
* dest. Returns the length of the decoded data.
*/
size_t Curl_base64_decode(char *dest, const char *src)
size_t Curl_base64_decode(const char *src, char *dest)
{
int length = 0;
int equalsTerm = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment