svn commit: r222712 - head/sys/netinet6

Hiroki Sato hrs at FreeBSD.org
Sun Jun 5 11:40:31 UTC 2011


Author: hrs
Date: Sun Jun  5 11:40:30 2011
New Revision: 222712
URL: http://svn.freebsd.org/changeset/base/222712

Log:
  Use uint8_t for sockaddr sa_len.
  
  Reviewed by:	bz

Modified:
  head/sys/netinet6/send.h

Modified: head/sys/netinet6/send.h
==============================================================================
--- head/sys/netinet6/send.h	Sun Jun  5 11:37:20 2011	(r222711)
+++ head/sys/netinet6/send.h	Sun Jun  5 11:40:30 2011	(r222712)
@@ -33,7 +33,7 @@
 #define	SND_IN		1	/* Incoming traffic. */
 
 struct sockaddr_send {
-	unsigned char		send_len;	/* total length */
+	uint8_t			send_len;	/* total length */
 	sa_family_t		send_family;	/* address family */
 	int			send_direction;
 	int			send_ifidx;


More information about the svn-src-head mailing list