diff options
author | Frederik Schwarzer <schwarzerf@gmail.com> | 2008-10-16 13:02:37 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-01-06 05:28:06 -0500 |
commit | 025dfdafe77f20b3890981a394774baab7b9c827 (patch) | |
tree | c4d514990d7a0673df5d32aa11fded95f9644ff0 /net/sctp | |
parent | 0abb8b6a939b742f273edc68b64dba26c57331bc (diff) |
trivial: fix then -> than typos in comments and documentation
- (better, more, bigger ...) then -> (...) than
Signed-off-by: Frederik Schwarzer <schwarzerf@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/auth.c | 4 | ||||
-rw-r--r-- | net/sctp/sm_statefuns.c | 6 | ||||
-rw-r--r-- | net/sctp/socket.c | 2 | ||||
-rw-r--r-- | net/sctp/tsnmap.c | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/net/sctp/auth.c b/net/sctp/auth.c index 52db5f60daa0..20c576f530fa 100644 --- a/net/sctp/auth.c +++ b/net/sctp/auth.c | |||
@@ -141,8 +141,8 @@ void sctp_auth_destroy_keys(struct list_head *keys) | |||
141 | /* Compare two byte vectors as numbers. Return values | 141 | /* Compare two byte vectors as numbers. Return values |
142 | * are: | 142 | * are: |
143 | * 0 - vectors are equal | 143 | * 0 - vectors are equal |
144 | * < 0 - vector 1 is smaller then vector2 | 144 | * < 0 - vector 1 is smaller than vector2 |
145 | * > 0 - vector 1 is greater then vector2 | 145 | * > 0 - vector 1 is greater than vector2 |
146 | * | 146 | * |
147 | * Algorithm is: | 147 | * Algorithm is: |
148 | * This is performed by selecting the numerically smaller key vector... | 148 | * This is performed by selecting the numerically smaller key vector... |
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index 1c4e5d6c29c0..3a0cd075914f 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c | |||
@@ -4268,9 +4268,9 @@ nomem: | |||
4268 | 4268 | ||
4269 | /* | 4269 | /* |
4270 | * Handle a protocol violation when the chunk length is invalid. | 4270 | * Handle a protocol violation when the chunk length is invalid. |
4271 | * "Invalid" length is identified as smaller then the minimal length a | 4271 | * "Invalid" length is identified as smaller than the minimal length a |
4272 | * given chunk can be. For example, a SACK chunk has invalid length | 4272 | * given chunk can be. For example, a SACK chunk has invalid length |
4273 | * if it's length is set to be smaller then the size of sctp_sack_chunk_t. | 4273 | * if its length is set to be smaller than the size of sctp_sack_chunk_t. |
4274 | * | 4274 | * |
4275 | * We inform the other end by sending an ABORT with a Protocol Violation | 4275 | * We inform the other end by sending an ABORT with a Protocol Violation |
4276 | * error code. | 4276 | * error code. |
@@ -4300,7 +4300,7 @@ static sctp_disposition_t sctp_sf_violation_chunklen( | |||
4300 | 4300 | ||
4301 | /* | 4301 | /* |
4302 | * Handle a protocol violation when the parameter length is invalid. | 4302 | * Handle a protocol violation when the parameter length is invalid. |
4303 | * "Invalid" length is identified as smaller then the minimal length a | 4303 | * "Invalid" length is identified as smaller than the minimal length a |
4304 | * given parameter can be. | 4304 | * given parameter can be. |
4305 | */ | 4305 | */ |
4306 | static sctp_disposition_t sctp_sf_violation_paramlen( | 4306 | static sctp_disposition_t sctp_sf_violation_paramlen( |
diff --git a/net/sctp/socket.c b/net/sctp/socket.c index b14a8f33e42d..ff0a8f88de04 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c | |||
@@ -2717,7 +2717,7 @@ static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, int o | |||
2717 | paths++; | 2717 | paths++; |
2718 | } | 2718 | } |
2719 | 2719 | ||
2720 | /* Only validate asocmaxrxt if we have more then | 2720 | /* Only validate asocmaxrxt if we have more than |
2721 | * one path/transport. We do this because path | 2721 | * one path/transport. We do this because path |
2722 | * retransmissions are only counted when we have more | 2722 | * retransmissions are only counted when we have more |
2723 | * then one path. | 2723 | * then one path. |
diff --git a/net/sctp/tsnmap.c b/net/sctp/tsnmap.c index 35c73e82553a..9bd64565021a 100644 --- a/net/sctp/tsnmap.c +++ b/net/sctp/tsnmap.c | |||
@@ -227,7 +227,7 @@ void sctp_tsnmap_skip(struct sctp_tsnmap *map, __u32 tsn) | |||
227 | */ | 227 | */ |
228 | bitmap_zero(map->tsn_map, map->len); | 228 | bitmap_zero(map->tsn_map, map->len); |
229 | } else { | 229 | } else { |
230 | /* If the gap is smaller then the map size, | 230 | /* If the gap is smaller than the map size, |
231 | * shift the map by 'gap' bits and update further. | 231 | * shift the map by 'gap' bits and update further. |
232 | */ | 232 | */ |
233 | bitmap_shift_right(map->tsn_map, map->tsn_map, gap, map->len); | 233 | bitmap_shift_right(map->tsn_map, map->tsn_map, gap, map->len); |