diff options
author | emaste <emaste@FreeBSD.org> | 2014-11-27 02:15:35 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2014-11-27 02:15:35 +0000 |
commit | 364f8a339bde9395cb0b747ec272f36cb97cfd0a (patch) | |
tree | bd61535ea267050db1bb8739f19c79981bc5ba4e /lib/libc | |
parent | b97c4c6cfe651bf075241a0c4525f3f2e5c1a7f8 (diff) | |
download | FreeBSD-src-364f8a339bde9395cb0b747ec272f36cb97cfd0a.zip FreeBSD-src-364f8a339bde9395cb0b747ec272f36cb97cfd0a.tar.gz |
ANSIfy b64_pton
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/net/base64.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/net/base64.c b/lib/libc/net/base64.c index 6737c18..8a9c59e 100644 --- a/lib/libc/net/base64.c +++ b/lib/libc/net/base64.c @@ -193,10 +193,7 @@ b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) { */ int -b64_pton(src, target, targsize) - char const *src; - u_char *target; - size_t targsize; +b64_pton(const char *src, u_char *target, size_t targsize) { int tarindex, state, ch; u_char nextbyte; |