svn commit: r275163 - head/lib/libc/net

Ed Maste emaste at FreeBSD.org
Thu Nov 27 02:15:36 UTC 2014


Author: emaste
Date: Thu Nov 27 02:15:35 2014
New Revision: 275163
URL: https://svnweb.freebsd.org/changeset/base/275163

Log:
  ANSIfy b64_pton

Modified:
  head/lib/libc/net/base64.c

Modified: head/lib/libc/net/base64.c
==============================================================================
--- head/lib/libc/net/base64.c	Thu Nov 27 01:37:01 2014	(r275162)
+++ head/lib/libc/net/base64.c	Thu Nov 27 02:15:35 2014	(r275163)
@@ -193,10 +193,7 @@ b64_ntop(u_char const *src, size_t srcle
  */
 
 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;


More information about the svn-src-all mailing list