projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30a5f32
)
Fix compile failure
author
Matt Caswell
<matt@openssl.org>
Fri, 11 Dec 2015 22:18:00 +0000
(22:18 +0000)
committer
Matt Caswell
<matt@openssl.org>
Fri, 11 Dec 2015 22:18:00 +0000
(22:18 +0000)
Fix compile failure introduced by commit
94d61512360c
due to a typo.
Reviewed-by: Richard Levitte <levitte@openssl.org>
ssl/s3_lib.c
patch
|
blob
|
history
diff --git
a/ssl/s3_lib.c
b/ssl/s3_lib.c
index ee007417675e8f9644d3565d27baf4faee91ac04..c08065f0357be6a367b910562d519903cd8751bc 100644
(file)
--- a/
ssl/s3_lib.c
+++ b/
ssl/s3_lib.c
@@
-4466,7
+4466,7
@@
long ssl3_ctx_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
#ifndef OPENSSL_NO_DH
case SSL_CTRL_SET_TMP_DH_CB:
{
- c
xt
->cert->dh_tmp_cb = (DH *(*)(SSL *, int, int))fp;
+ c
tx
->cert->dh_tmp_cb = (DH *(*)(SSL *, int, int))fp;
}
break;
#endif