svn commit: r283728 - stable/10/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Fri May 29 13:06:16 UTC 2015


Author: tuexen
Date: Fri May 29 13:06:15 2015
New Revision: 283728
URL: https://svnweb.freebsd.org/changeset/base/283728

Log:
  MFC r280371:
  
  Remove a useless assignment.

Modified:
  stable/10/sys/netinet/sctp_output.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netinet/sctp_output.c
==============================================================================
--- stable/10/sys/netinet/sctp_output.c	Fri May 29 13:02:00 2015	(r283727)
+++ stable/10/sys/netinet/sctp_output.c	Fri May 29 13:06:15 2015	(r283728)
@@ -9302,8 +9302,6 @@ sctp_send_asconf_ack(struct sctp_tcb *st
 			atomic_add_int(&chk->whoTo->ref_count, 1);
 		}
 		chk->data = m_ack;
-		chk->send_size = 0;
-		/* Get size */
 		chk->send_size = ack->len;
 		chk->sent = SCTP_DATAGRAM_UNSENT;
 		chk->snd_count = 0;


More information about the svn-src-all mailing list