summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-07-06 20:14:10 +0100
committerPauli <pauli@openssl.org>2023-07-17 08:18:05 +1000
commit1d547f8fc4fa2bc16fca935703ec90cfdf3fefd4 (patch)
treea6b78bd45fa776b6131bef7e0151594b6702f9b8 /include
parent96b7df60b3e54641c6046fea31c7a5cb535c2eeb (diff)
Minor updates 2
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21135)
Diffstat (limited to 'include')
-rw-r--r--include/internal/quic_stream_map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/internal/quic_stream_map.h b/include/internal/quic_stream_map.h
index 3202382d0a..bff2e11fd2 100644
--- a/include/internal/quic_stream_map.h
+++ b/include/internal/quic_stream_map.h
@@ -164,7 +164,7 @@ struct quic_stream_st {
unsigned int active : 1;
/*
- * This is a cpoy of the QUIC connection as_server value, indicating
+ * This is a copy of the QUIC connection as_server value, indicating
* whether we are locally operating as a server or not. Having this
* significantly simplifies stream type determination relative to our
* perspective. It never changes after a QUIC_STREAM is created and is the
@@ -717,7 +717,7 @@ int ossl_quic_stream_map_notify_totally_received(QUIC_STREAM_MAP *qsm,
/*
* Transitions from the DATA_RECVD receive stream state to the DATA_READ state.
- * This shuld be called once all data for a receive stream is read by the
+ * This should be called once all data for a receive stream is read by the
* application.
*
* Returns 1 if the transition was taken.