net: sctp: trivial: fix typo in comment
authorDrew Fustini <drew@beagleboard.org>
Thu, 4 Mar 2021 05:55:49 +0000 (21:55 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 4 Mar 2021 21:48:32 +0000 (13:48 -0800)
Fix typo of 'overflow' for comment in sctp_tsnmap_check().

Reported-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Drew Fustini <drew@beagleboard.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/tsnmap.c

index a9c6af5..5ba4567 100644 (file)
@@ -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;