Portability fix, opnsrv6c

parent e5f48e13
...@@ -129,7 +129,7 @@ base64_decode(const char *src, size_t size, void *dst) ...@@ -129,7 +129,7 @@ base64_decode(const char *src, size_t size, void *dst)
{ {
char b[3]; char b[3];
size_t i= 0; size_t i= 0;
void *d= dst; unsigned char *d= (unsigned char*)dst;
size_t j; size_t j;
while (i < size) while (i < size)
...@@ -181,14 +181,14 @@ base64_decode(const char *src, size_t size, void *dst) ...@@ -181,14 +181,14 @@ base64_decode(const char *src, size_t size, void *dst)
b[2]= (c >> 0) & 0xff; b[2]= (c >> 0) & 0xff;
for (j=0; j<3-mark; j++) for (j=0; j<3-mark; j++)
*(char *)d++= b[j]; *d++= b[j];
} }
if (i != size) if (i != size)
{ {
return -1; return -1;
} }
return d - dst; return d - (unsigned char*)dst;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment