svn commit: r198088 - in stable/8/sys: . amd64/include/xen cddl/contrib/opensolaris contrib/dev/acpica contrib/pf dev/xen/xenpci netinet

Michael Tuexen tuexen at FreeBSD.org
Wed Oct 14 17:26:05 UTC 2009


Author: tuexen
Date: Wed Oct 14 17:26:05 2009
New Revision: 198088
URL: http://svn.freebsd.org/changeset/base/198088

Log:
  MFC r197868.
  Use correct arguments when calling SCTP_RTALLOC().
  Approved by: re, rrs (mentor)

Modified:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)
  stable/8/sys/netinet/sctp_output.c

Modified: stable/8/sys/netinet/sctp_output.c
==============================================================================
--- stable/8/sys/netinet/sctp_output.c	Wed Oct 14 16:55:25 2009	(r198087)
+++ stable/8/sys/netinet/sctp_output.c	Wed Oct 14 17:26:05 2009	(r198088)
@@ -3570,7 +3570,7 @@ sctp_lowlevel_chunk_output(struct sctp_i
 				sctp_free_ifa(_lsrc);
 			} else {
 				ip->ip_src = over_addr->sin.sin_addr;
-				SCTP_RTALLOC((&ro->ro_rt), vrf_id);
+				SCTP_RTALLOC(ro, vrf_id);
 			}
 		}
 		if (port) {
@@ -3924,7 +3924,7 @@ sctp_lowlevel_chunk_output(struct sctp_i
 				sctp_free_ifa(_lsrc);
 			} else {
 				lsa6->sin6_addr = over_addr->sin6.sin6_addr;
-				SCTP_RTALLOC((&ro->ro_rt), vrf_id);
+				SCTP_RTALLOC(ro, vrf_id);
 			}
 			(void)sa6_recoverscope(sin6);
 		}


More information about the svn-src-all mailing list