Misc tweaks for EBCDIC based on feedback received
authorMatt Caswell <matt@openssl.org>
Fri, 29 Apr 2016 13:46:07 +0000 (14:46 +0100)
committerMatt Caswell <matt@openssl.org>
Fri, 29 Apr 2016 14:04:15 +0000 (15:04 +0100)
Reviewed-by: Andy Polyakov <appro@openssl.org>
test/mdc2test.c
test/rmdtest.c
test/sha1test.c

index 06456a87a18ca7c064372f72713e1f5d3982a0c5..e01a2a746c43b8d72c6a6d29ca5193e628eafda2 100644 (file)
@@ -95,7 +95,7 @@ int main(int argc, char *argv[])
     unsigned char md[MDC2_DIGEST_LENGTH];
     int i;
     EVP_MD_CTX *c;
-    static char text[30] = "Now is the time for all ";
+    static char text[] = "Now is the time for all ";
 
 # ifdef CHARSET_EBCDIC
     ebcdic2ascii(text, text, strlen(text));
index c7db9e7294a75d400f6306fe69bb1668164fd94b..b5ed73d0131ffbdb247a6806b171c6adbee4fd83 100644 (file)
@@ -107,8 +107,7 @@ int main(int argc, char *argv[])
     unsigned char md[RIPEMD160_DIGEST_LENGTH];
 
     R = ret;
-    i = 0;
-    while (i < OSSL_NELEM(test)) {
+    for (i = 0; i < OSSL_NELEM(test); i++) {
 # ifdef CHARSET_EBCDIC
         ebcdic2ascii(test[i], test[i], strlen(test[i]));
 # endif
@@ -121,7 +120,6 @@ int main(int argc, char *argv[])
             err++;
         } else
             printf("test %d ok\n", i + 1);
-        i++;
         R++;
     }
     EXIT(err);
index d2e248c9b7819e0e52dafa837adaf58440a0c0a0..3e9104a3e77227d73fa03e39beabcb97a806db9f 100644 (file)
@@ -92,8 +92,7 @@ int main(int argc, char *argv[])
 
     c = EVP_MD_CTX_new();
     R = ret;
-    i = 0;
-    while (i < OSSL_NELEM(test)) {
+    for (i = 0; i < OSSL_NELEM(test); i++) {
 # ifdef CHARSET_EBCDIC
         ebcdic2ascii(test[i], test[i], strlen(test[i]));
 # endif
@@ -105,7 +104,6 @@ int main(int argc, char *argv[])
             err++;
         } else
             printf("test %d ok\n", i + 1);
-        i++;
         R++;
     }