diff options
author | jsing <> | 2015-09-12 20:51:33 +0000 |
---|---|---|
committer | jsing <> | 2015-09-12 20:51:33 +0000 |
commit | 1312e7b62867f57a9802f37d04aca245164178b3 (patch) | |
tree | 1d3ae73e43de29fbe38e3b5341b40e3be8e5b83d /src/lib | |
parent | d712224a647df19276e22915af780d1944b69a20 (diff) | |
download | openbsd-1312e7b62867f57a9802f37d04aca245164178b3.tar.gz openbsd-1312e7b62867f57a9802f37d04aca245164178b3.tar.bz2 openbsd-1312e7b62867f57a9802f37d04aca245164178b3.zip |
Fix function name.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/d1_srvr.c | 4 | ||||
-rw-r--r-- | src/lib/libssl/src/ssl/d1_srvr.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/d1_srvr.c b/src/lib/libssl/d1_srvr.c index 289ef246a5..f5e0ec3e4b 100644 --- a/src/lib/libssl/d1_srvr.c +++ b/src/lib/libssl/d1_srvr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_srvr.c,v 1.65 2015/09/12 20:27:27 jsing Exp $ */ | 1 | /* $OpenBSD: d1_srvr.c,v 1.66 2015/09/12 20:51:33 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -509,7 +509,7 @@ dtls1_accept(SSL *s) | |||
509 | goto end; | 509 | goto end; |
510 | } | 510 | } |
511 | s->s3->flags |= TLS1_FLAGS_KEEP_HANDSHAKE; | 511 | s->s3->flags |= TLS1_FLAGS_KEEP_HANDSHAKE; |
512 | if (!ssl3_digest_cached_records(s)) { | 512 | if (!tls1_digest_cached_records(s)) { |
513 | ret = -1; | 513 | ret = -1; |
514 | goto end; | 514 | goto end; |
515 | } | 515 | } |
diff --git a/src/lib/libssl/src/ssl/d1_srvr.c b/src/lib/libssl/src/ssl/d1_srvr.c index 289ef246a5..f5e0ec3e4b 100644 --- a/src/lib/libssl/src/ssl/d1_srvr.c +++ b/src/lib/libssl/src/ssl/d1_srvr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_srvr.c,v 1.65 2015/09/12 20:27:27 jsing Exp $ */ | 1 | /* $OpenBSD: d1_srvr.c,v 1.66 2015/09/12 20:51:33 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -509,7 +509,7 @@ dtls1_accept(SSL *s) | |||
509 | goto end; | 509 | goto end; |
510 | } | 510 | } |
511 | s->s3->flags |= TLS1_FLAGS_KEEP_HANDSHAKE; | 511 | s->s3->flags |= TLS1_FLAGS_KEEP_HANDSHAKE; |
512 | if (!ssl3_digest_cached_records(s)) { | 512 | if (!tls1_digest_cached_records(s)) { |
513 | ret = -1; | 513 | ret = -1; |
514 | goto end; | 514 | goto end; |
515 | } | 515 | } |