Commit d93ef301 authored by Drew Fustini's avatar Drew Fustini Committed by David S. Miller

net: sctp: trivial: fix typo in comment

Fix typo of 'overflow' for comment in sctp_tsnmap_check().
Reported-by: default avatarGustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: default avatarDrew Fustini <drew@beagleboard.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e216674a
...@@ -75,7 +75,7 @@ int sctp_tsnmap_check(const struct sctp_tsnmap *map, __u32 tsn) ...@@ -75,7 +75,7 @@ int sctp_tsnmap_check(const struct sctp_tsnmap *map, __u32 tsn)
return 1; return 1;
/* Verify that we can hold this TSN and that it will not /* Verify that we can hold this TSN and that it will not
* overlfow our map * overflow our map
*/ */
if (!TSN_lt(tsn, map->base_tsn + SCTP_TSN_MAP_SIZE)) if (!TSN_lt(tsn, map->base_tsn + SCTP_TSN_MAP_SIZE))
return -1; return -1;
......
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