diff options
Diffstat (limited to 'net/sctp/sm_statefuns.c')
-rw-r--r-- | net/sctp/sm_statefuns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index 50225dd2e6dc..910926906a3a 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c | |||
@@ -4555,9 +4555,9 @@ sctp_disposition_t sctp_sf_do_prm_send(const struct sctp_endpoint *ep, | |||
4555 | void *arg, | 4555 | void *arg, |
4556 | sctp_cmd_seq_t *commands) | 4556 | sctp_cmd_seq_t *commands) |
4557 | { | 4557 | { |
4558 | struct sctp_chunk *chunk = arg; | 4558 | struct sctp_datamsg *msg = arg; |
4559 | 4559 | ||
4560 | sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(chunk)); | 4560 | sctp_add_cmd_sf(commands, SCTP_CMD_SEND_MSG, SCTP_DATAMSG(msg)); |
4561 | return SCTP_DISPOSITION_CONSUME; | 4561 | return SCTP_DISPOSITION_CONSUME; |
4562 | } | 4562 | } |
4563 | 4563 | ||