Deshadow.
authorBen Laurie <ben@openssl.org>
Sun, 24 Sep 2000 19:22:22 +0000 (19:22 +0000)
committerBen Laurie <ben@openssl.org>
Sun, 24 Sep 2000 19:22:22 +0000 (19:22 +0000)
apps/rsa.c

index 7e9e5e2c38f454c1abb36b5641f8802087cc5e66..700df4223ed9e4beca2da03a55cb8030f5276b68 100644 (file)
@@ -346,14 +346,14 @@ bad:
                        BIO_printf(out,"RSA key ok\n");
                else if (r == 0)
                        {
-                       long e;
+                       long err;
 
-                       while ((e = ERR_peek_error()) != 0 &&
-                               ERR_GET_LIB(e) == ERR_LIB_RSA &&
-                               ERR_GET_FUNC(e) == RSA_F_RSA_CHECK_KEY &&
-                               ERR_GET_REASON(e) != ERR_R_MALLOC_FAILURE)
+                       while ((err = ERR_peek_error()) != 0 &&
+                               ERR_GET_LIB(err) == ERR_LIB_RSA &&
+                               ERR_GET_FUNC(err) == RSA_F_RSA_CHECK_KEY &&
+                               ERR_GET_REASON(err) != ERR_R_MALLOC_FAILURE)
                                {
-                               BIO_printf(out, "RSA key error: %s\n", ERR_reason_error_string(e));
+                               BIO_printf(out, "RSA key error: %s\n", ERR_reason_error_string(err));
                                ERR_get_error(); /* remove e from error stack */
                                }
                        }