Author: tuexen
Date: Sun Apr 29 18:50:16 2012
New Revision: 234813
URL: http://svn.freebsd.org/changeset/base/234813

Log:
  MFC r234539:
  Fix check used by stream reset related events.

Modified:
  stable/8/sys/netinet/sctputil.c
Directory Properties:
  stable/8/sys/   (props changed)

Modified: stable/8/sys/netinet/sctputil.c
==============================================================================
--- stable/8/sys/netinet/sctputil.c     Sun Apr 29 18:48:00 2012        
(r234812)
+++ stable/8/sys/netinet/sctputil.c     Sun Apr 29 18:50:16 2012        
(r234813)
@@ -3214,7 +3214,7 @@ sctp_notify_stream_reset_add(struct sctp
        struct sctp_stream_change_event *stradd;
        int len;
 
-       if (sctp_is_feature_off(stcb->sctp_ep, 
SCTP_PCB_FLAGS_STREAM_RESETEVNT)) {
+       if (sctp_stcb_is_feature_off(stcb->sctp_ep, stcb, 
SCTP_PCB_FLAGS_STREAM_RESETEVNT)) {
                /* event not enabled */
                return;
        }
@@ -3275,7 +3275,7 @@ sctp_notify_stream_reset_tsn(struct sctp
        struct sctp_assoc_reset_event *strasoc;
        int len;
 
-       if (sctp_is_feature_off(stcb->sctp_ep, 
SCTP_PCB_FLAGS_STREAM_RESETEVNT)) {
+       if (sctp_stcb_is_feature_off(stcb->sctp_ep, stcb, 
SCTP_PCB_FLAGS_STREAM_RESETEVNT)) {
                /* event not enabled */
                return;
        }
@@ -3333,7 +3333,7 @@ sctp_notify_stream_reset(struct sctp_tcb
        struct sctp_stream_reset_event *strreset;
        int len;
 
-       if (sctp_is_feature_off(stcb->sctp_ep, 
SCTP_PCB_FLAGS_STREAM_RESETEVNT)) {
+       if (sctp_stcb_is_feature_off(stcb->sctp_ep, stcb, 
SCTP_PCB_FLAGS_STREAM_RESETEVNT)) {
                /* event not enabled */
                return;
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to