Stop bogus shadowing warning.
authorDr. Stephen Henson <steve@openssl.org>
Wed, 20 Apr 2005 21:34:29 +0000 (21:34 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 20 Apr 2005 21:34:29 +0000 (21:34 +0000)
crypto/bio/bss_conn.c

index bfb2b577138209f76b6ede0397cd7501f9eec469..fd20bbcd0f445cd8fd4d352d717bae25c59a8c11 100644 (file)
@@ -590,9 +590,9 @@ static long conn_ctrl(BIO *b, int cmd, long num, void *ptr)
                break;
        case BIO_CTRL_GET_CALLBACK:
                {
-               int (**fptr)(const BIO *bio,int state,int ret);
+               int (**fptr)(const BIO *bio,int state,int xret);
 
-               fptr=(int (**)(const BIO *bio,int state,int ret))ptr;
+               fptr=(int (**)(const BIO *bio,int state,int xret))ptr;
                *fptr=data->info_callback;
                }
                break;