diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-29 15:46:07 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-29 16:04:15 +0200 |
commit | a1f41284d7eb3c72096ae9cbd6a0673c0bb0d267 (patch) | |
tree | 517e325bfb7580befdce32db226ab5d32d654b29 /test/mdc2test.c | |
parent | Fix EBCDIC problem in conf_def.h (diff) | |
download | openssl-a1f41284d7eb3c72096ae9cbd6a0673c0bb0d267.tar.xz openssl-a1f41284d7eb3c72096ae9cbd6a0673c0bb0d267.zip |
Misc tweaks for EBCDIC based on feedback received
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'test/mdc2test.c')
-rw-r--r-- | test/mdc2test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mdc2test.c b/test/mdc2test.c index 06456a87a1..e01a2a746c 100644 --- a/test/mdc2test.c +++ b/test/mdc2test.c @@ -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)); |