svn commit: r193088 - head/sys/netinet

Randall Stewart rrs at FreeBSD.org
Sat May 30 10:50:41 UTC 2009


Author: rrs
Date: Sat May 30 10:50:40 2009
New Revision: 193088
URL: http://svn.freebsd.org/changeset/base/193088

Log:
  Make sctp_uio user to kernel structure match the
  socket-api draft. Two fields were uint32_t when they
  should have been uint16_t.
  
  Reported by Jonathan Leighton at U-del.

Modified:
  head/sys/netinet/sctp_uio.h

Modified: head/sys/netinet/sctp_uio.h
==============================================================================
--- head/sys/netinet/sctp_uio.h	Sat May 30 10:42:19 2009	(r193087)
+++ head/sys/netinet/sctp_uio.h	Sat May 30 10:50:40 2009	(r193088)
@@ -68,8 +68,8 @@ struct sctp_event_subscribe {
  * ancillary data structures
  */
 struct sctp_initmsg {
-	uint32_t sinit_num_ostreams;
-	uint32_t sinit_max_instreams;
+	uint16_t sinit_num_ostreams;
+	uint16_t sinit_max_instreams;
 	uint16_t sinit_max_attempts;
 	uint16_t sinit_max_init_timeo;
 };


More information about the svn-src-head mailing list