summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-12-15 07:06:55 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-13 13:20:22 +0000
commit81b6b43c4a56e4158ee4059fc03c10f970423506 (patch)
tree92727f9a44d5b15646b7fd488fb33640960639d6 /ssl
parentb8a132d68f665b4c3fb6dcb8f3e8c625bbfb57c4 (diff)
QUIC: Minor comment and editorial fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19703)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c
index e59e6d8537..d94dacfe7e 100644
--- a/ssl/quic/quic_impl.c
+++ b/ssl/quic/quic_impl.c
@@ -1077,7 +1077,7 @@ static int quic_read_again(void *arg)
/* got at least one byte, the SSL_read op can finish now */
return 1;
- return 0; /* did not write anything, keep trying */
+ return 0; /* did not read anything, keep trying */
}
static int quic_read(SSL *s, void *buf, size_t len, size_t *bytes_read, int peek)