summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-03-21 15:04:08 +0000
committerMatt Caswell <matt@openssl.org>2016-03-21 16:28:40 +0000
commit168c3b737e898ce97348dfe77ef176e39ae9da0d (patch)
tree8d0158b607f79ff41c792a23ae2362f7f0df0c83 /apps
parentac19ae151c5a740a77789f6476181e58f563f1e6 (diff)
Fix no-gost
Configure had the wrong name for the no-gost option. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/progs.h4
-rw-r--r--apps/progs.pl2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/progs.h b/apps/progs.h
index aa37d36227..2711f2a734 100644
--- a/apps/progs.h
+++ b/apps/progs.h
@@ -218,8 +218,8 @@ static FUNCTION functions[] = {
#ifndef OPENSSL_NO_MD5
{ FT_md, "md5", dgst_main},
#endif
-#ifndef OPENSSL_NO_MD_GHOST94
- { FT_md, "md_ghost94", dgst_main},
+#ifndef OPENSSL_NO_GOST
+ { FT_md, "gost", dgst_main},
#endif
#ifndef OPENSSL_NO_SHA
{ FT_md, "sha1", dgst_main},
diff --git a/apps/progs.pl b/apps/progs.pl
index 669e82b940..ee6ce92474 100644
--- a/apps/progs.pl
+++ b/apps/progs.pl
@@ -104,7 +104,7 @@ my %md_disabler = (
);
foreach my $cmd (
"md2", "md4", "md5",
- "md_ghost94",
+ "gost",
"sha1", "sha224", "sha256", "sha384", "sha512",
"mdc2", "rmd160", "blake2b512", "blake2s256"
) {