Commit eab59075 authored by Marcelo Ricardo Leitner's avatar Marcelo Ricardo Leitner Committed by David S. Miller

sctp: reduce indent level at sctp_sf_tabort_8_4_8

Signed-off-by: default avatarMarcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8f18e4d0
...@@ -3237,8 +3237,9 @@ static sctp_disposition_t sctp_sf_tabort_8_4_8(struct net *net, ...@@ -3237,8 +3237,9 @@ static sctp_disposition_t sctp_sf_tabort_8_4_8(struct net *net,
struct sctp_chunk *abort; struct sctp_chunk *abort;
packet = sctp_ootb_pkt_new(net, asoc, chunk); packet = sctp_ootb_pkt_new(net, asoc, chunk);
if (!packet)
return SCTP_DISPOSITION_NOMEM;
if (packet) {
/* Make an ABORT. The T bit will be set if the asoc /* Make an ABORT. The T bit will be set if the asoc
* is NULL. * is NULL.
*/ */
...@@ -3264,9 +3265,6 @@ static sctp_disposition_t sctp_sf_tabort_8_4_8(struct net *net, ...@@ -3264,9 +3265,6 @@ static sctp_disposition_t sctp_sf_tabort_8_4_8(struct net *net,
sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); sctp_sf_pdiscard(net, ep, asoc, type, arg, commands);
return SCTP_DISPOSITION_CONSUME; return SCTP_DISPOSITION_CONSUME;
}
return SCTP_DISPOSITION_NOMEM;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment