Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: sctp: trivial: fix typo in comment

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>

authored by

Drew Fustini and committed by
David S. Miller
d93ef301 e216674a

+1 -1
+1 -1
net/sctp/tsnmap.c
··· 75 75 return 1; 76 76 77 77 /* Verify that we can hold this TSN and that it will not 78 - * overlfow our map 78 + * overflow our map 79 79 */ 80 80 if (!TSN_lt(tsn, map->base_tsn + SCTP_TSN_MAP_SIZE)) 81 81 return -1;