summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-12-27 23:03:25 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-12-27 23:03:25 +0000
commit986093affa9a1c94de156b5e18d0b7151af62b62 (patch)
tree2ca39473a5cd98b8c831258c9b82f07ddf62cae4 /ssl/ssl_lib.c
parentf88e0acb0e71b9295f0be35655ce3197809885ae (diff)
Typo
Diffstat (limited to 'ssl/ssl_lib.c')
-rw-r--r--ssl/ssl_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index f5ea6b6293..549d4fb1f6 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -1374,11 +1374,11 @@ int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p,
*/
if (p != q && !s->new_session)
{
- static SSL_CIPHER msvc =
+ static SSL_CIPHER scsv =
{
0, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
- j = put_cb ? put_cb(&msvc,p) : ssl_put_cipher_by_char(s,&msvc,p);
+ j = put_cb ? put_cb(&scsv,p) : ssl_put_cipher_by_char(s,&scsv,p);
p+=j;
#ifdef OPENSSL_RI_DEBUG
fprintf(stderr, "SCSV sent by client\n");