summaryrefslogtreecommitdiffstats
path: root/ssl/bio_ssl.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2005-04-20 21:48:48 +0000
committerDr. Stephen Henson <steve@openssl.org>2005-04-20 21:48:48 +0000
commit384dba6edb478764bc72fc03c0e62e4cd9f55636 (patch)
tree998c3b9484dbd2f44f77a7b1ef37b4c77db2ed28 /ssl/bio_ssl.c
parent2c45bf2bc9be4704c63b024d5721c1f537adb0f2 (diff)
Make kerberos ciphersuite code compile again.
Avoid more shadow warnings.
Diffstat (limited to 'ssl/bio_ssl.c')
-rw-r--r--ssl/bio_ssl.c4
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;