mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-01-23 02:34:59 +00:00
Fixed compiler-warnings for gcc-4... mostly type-checking
git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@90 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
parent
e2b31bddcc
commit
f51bdbda82
7 changed files with 13 additions and 11 deletions
2
base64.c
2
base64.c
|
|
@ -88,7 +88,7 @@ void base64(unsigned char *out, const unsigned char *in, int len)
|
|||
*out = '\0';
|
||||
}
|
||||
|
||||
int unbase64(char *out, const char *in, int maxlen)
|
||||
int unbase64(unsigned char *out, const unsigned char *in, int maxlen)
|
||||
/* base 64 to raw bytes in quasi-big-endian order, returning count of bytes */
|
||||
/* maxlen limits output buffer size, set to zero to ignore */
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue