From: Drew Fustini Date: Thu, 4 Mar 2021 05:55:49 +0000 (-0800) Subject: net: sctp: trivial: fix typo in comment X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=d93ef301644ee82925bce1d57fdfe70475dc0bae;p=kernel.git net: sctp: trivial: fix typo in comment Fix typo of 'overflow' for comment in sctp_tsnmap_check(). Reported-by: Gustavo A. R. Silva Signed-off-by: Drew Fustini Signed-off-by: David S. Miller --- diff --git a/net/sctp/tsnmap.c b/net/sctp/tsnmap.c index a9c6af5795d81..5ba456727f631 100644 --- a/net/sctp/tsnmap.c +++ b/net/sctp/tsnmap.c @@ -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;