Skip to content

Commit

Permalink
net: sctp: trivial: fix typo in comment
Browse files Browse the repository at this point in the history
Fix typo of 'overflow' for comment in sctp_tsnmap_check().

Reported-by: Gustavo A. R. Silva <[email protected]>
Signed-off-by: Drew Fustini <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
pdp7 authored and davem330 committed Mar 4, 2021
1 parent e216674 commit d93ef30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/sctp/tsnmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int sctp_tsnmap_check(const struct sctp_tsnmap *map, __u32 tsn)
return 1;

/* 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))
return -1;
Expand Down

0 comments on commit d93ef30

Please sign in to comment.