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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;