diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2005-04-20 23:48:48 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2005-04-20 23:48:48 +0200 |
commit | 384dba6edb478764bc72fc03c0e62e4cd9f55636 (patch) | |
tree | 998c3b9484dbd2f44f77a7b1ef37b4c77db2ed28 /ssl/bio_ssl.c | |
parent | Rename typed version of M_ASN1_get M_ASN1_get_x to avoid conflicts. (diff) | |
download | openssl-384dba6edb478764bc72fc03c0e62e4cd9f55636.tar.xz openssl-384dba6edb478764bc72fc03c0e62e4cd9f55636.zip |
Make kerberos ciphersuite code compile again.
Avoid more shadow warnings.
Diffstat (limited to 'ssl/bio_ssl.c')
-rw-r--r-- | ssl/bio_ssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c index 1db216be8b..0f86c03057 100644 --- a/ssl/bio_ssl.c +++ b/ssl/bio_ssl.c @@ -465,9 +465,9 @@ static long ssl_ctrl(BIO *b, int cmd, long num, void *ptr) break; case BIO_CTRL_GET_CALLBACK: { - void (**fptr)(const SSL *ssl,int type,int val); + void (**fptr)(const SSL *xssl,int type,int val); - fptr=(void (**)(const SSL *ssl,int type,int val))ptr; + fptr=(void (**)(const SSL *xssl,int type,int val))ptr; *fptr=SSL_get_info_callback(ssl); } break; |