Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 May 2009 10:50:40 +0000 (UTC)
From:      Randall Stewart <rrs@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r193088 - head/sys/netinet
Message-ID:  <200905301050.n4UAoe02004106@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905301050.n4UAoe02004106>