diff options
author | tb <> | 2021-01-26 18:47:08 +0000 |
---|---|---|
committer | tb <> | 2021-01-26 18:47:08 +0000 |
commit | 89d1f4934b2c8b8008d2371fe589ca7e0cd23119 (patch) | |
tree | 34222914993bc2b4eab18480129cde094e574a7e | |
parent | 4d28169829afe1823fddd681e61da9286277b1c7 (diff) | |
download | openbsd-89d1f4934b2c8b8008d2371fe589ca7e0cd23119.tar.gz openbsd-89d1f4934b2c8b8008d2371fe589ca7e0cd23119.tar.bz2 openbsd-89d1f4934b2c8b8008d2371fe589ca7e0cd23119.zip |
Rewrap a comment line to fit into 80 columns.
-rw-r--r-- | src/lib/libssl/s3_lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c index 0d10fdfe63..1af3b033e8 100644 --- a/src/lib/libssl/s3_lib.c +++ b/src/lib/libssl/s3_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_lib.c,v 1.201 2020/10/14 16:57:33 jsing Exp $ */ | 1 | /* $OpenBSD: s3_lib.c,v 1.202 2021/01/26 18:47:08 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -2658,8 +2658,8 @@ ssl3_read_internal(SSL *s, void *buf, int len, int peek) | |||
2658 | SSL3_RT_APPLICATION_DATA, buf, len, peek); | 2658 | SSL3_RT_APPLICATION_DATA, buf, len, peek); |
2659 | if ((ret == -1) && (S3I(s)->in_read_app_data == 2)) { | 2659 | if ((ret == -1) && (S3I(s)->in_read_app_data == 2)) { |
2660 | /* | 2660 | /* |
2661 | * ssl3_read_bytes decided to call s->internal->handshake_func, which | 2661 | * ssl3_read_bytes decided to call s->internal->handshake_func, |
2662 | * called ssl3_read_bytes to read handshake data. | 2662 | * which called ssl3_read_bytes to read handshake data. |
2663 | * However, ssl3_read_bytes actually found application data | 2663 | * However, ssl3_read_bytes actually found application data |
2664 | * and thinks that application data makes sense here; so disable | 2664 | * and thinks that application data makes sense here; so disable |
2665 | * handshake processing and try to read application data again. | 2665 | * handshake processing and try to read application data again. |