diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-01-10 22:53:06 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-11 10:01:01 -0500 |
commit | eb004603c857f3e3bfcda437b6c68fd258c54960 (patch) | |
tree | 4fee1bc5ec4355d625d362f646b9e40df6bdfc75 /net/sctp | |
parent | 7a18c5b9fb31a999afc62b0e60978aa896fc89e9 (diff) | |
download | linux-eb004603c857f3e3bfcda437b6c68fd258c54960.tar.bz2 |
sctp: Fix spelling mistake: "Atempt" -> "Attempt"
Trivial fix to spelling mistake in WARN_ONCE message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/outqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c index e54082699520..34efaa4ef2f6 100644 --- a/net/sctp/outqueue.c +++ b/net/sctp/outqueue.c @@ -1048,7 +1048,7 @@ static void sctp_outq_flush(struct sctp_outq *q, int rtx_timeout, gfp_t gfp) (new_transport->state == SCTP_PF))) new_transport = asoc->peer.active_path; if (new_transport->state == SCTP_UNCONFIRMED) { - WARN_ONCE(1, "Atempt to send packet on unconfirmed path."); + WARN_ONCE(1, "Attempt to send packet on unconfirmed path."); sctp_chunk_fail(chunk, 0); sctp_chunk_free(chunk); continue; |