summaryrefslogtreecommitdiffstats
path: root/ssl/d1_lib.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-11-19 08:37:18 +0100
committerRichard Levitte <levitte@openssl.org>2020-11-20 09:39:11 +0100
commit276d6c687a89f90c096faf8918681d04a0cea7cf (patch)
tree916e12f61a1bbeec06ac6ac683d34e3b5d0ac81a /ssl/d1_lib.c
parentf2a7151849a566892912737f7b633c04f64a2b9e (diff)
SSL: Change SSLerr() to ERR_raise()
This was probably due to a merge Fixes #13449 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/13450)
Diffstat (limited to 'ssl/d1_lib.c')
-rw-r--r--ssl/d1_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c
index 5ecf1d19fa..bd50ee6d9c 100644
--- a/ssl/d1_lib.c
+++ b/ssl/d1_lib.c
@@ -487,7 +487,7 @@ int DTLSv1_listen(SSL *s, BIO_ADDR *client)
}
if (!ssl3_setup_buffers(s)) {
- /* SSLerr already called */
+ /* ERR_raise() already called */
return -1;
}
buf = RECORD_LAYER_get_rbuf(&s->rlayer)->buf;