OSDN Git Service
(root)
/
uclinux-h8
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e216674
)
net: sctp: trivial: fix typo in comment
author
Drew Fustini
<drew@beagleboard.org>
Thu, 4 Mar 2021 05:55:49 +0000
(21:55 -0800)
committer
David 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
patch
|
blob
|
history
diff --git
a/net/sctp/tsnmap.c
b/net/sctp/tsnmap.c
index
a9c6af5
..
5ba4567
100644
(file)
--- 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
- * over
lf
ow our map
+ * over
fl
ow our map
*/
if (!TSN_lt(tsn, map->base_tsn + SCTP_TSN_MAP_SIZE))
return -1;