summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-04-18 19:37:49 +0100
committerHugo Landau <hlandau@openssl.org>2023-05-12 14:47:13 +0100
commit571aff4bfaf0407cadba2e304b60c0364684cee5 (patch)
treed3e6b509c04a1465f9836a9ea43ae22e89a3c6ee /ssl
parented835673ae5d99cac39d0bef6677597a68d1e248 (diff)
Minor fixups
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20765)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_local.h2
-rw-r--r--ssl/ssl_lib.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ssl/quic/quic_local.h b/ssl/quic/quic_local.h
index 1e6f35482a..6e062089f0 100644
--- a/ssl/quic/quic_local.h
+++ b/ssl/quic/quic_local.h
@@ -27,7 +27,7 @@
# ifndef OPENSSL_NO_QUIC
/*
- * QUIC stream SSL object (QCSO) type. This implements the API personality layer
+ * QUIC stream SSL object (QSSO) type. This implements the API personality layer
* for QSSO objects, wrapping the QUIC-native QUIC_STREAM object and tracking
* state required by the libssl API personality.
*/
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 3fb80824de..ad3b1ed15d 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -7384,7 +7384,7 @@ int SSL_attach_stream(SSL *conn, SSL *stream)
return ossl_quic_attach_stream(conn, stream);
#else
- return NULL;
+ return 0;
#endif
}