summaryrefslogtreecommitdiff
path: root/usr.bin/openssl
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2016-04-07 20:02:20 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2016-04-07 20:02:20 +0000
commitaa39742da07249eec29a11a0c5934bdc6f2ffed5 (patch)
tree34ca2cf3b39f278623a7b1f1afd4edce7836de7b /usr.bin/openssl
parente897bf0b9c53c837c558e88d8c33698b683f6332 (diff)
hexidecimal->hexadecimal; from mmcc
ok beck
Diffstat (limited to 'usr.bin/openssl')
-rw-r--r--usr.bin/openssl/enc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/openssl/enc.c b/usr.bin/openssl/enc.c
index 8dcaf0bd7ca..4c6de096fdb 100644
--- a/usr.bin/openssl/enc.c
+++ b/usr.bin/openssl/enc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: enc.c,v 1.10 2015/10/17 15:00:11 doug Exp $ */
+/* $OpenBSD: enc.c,v 1.11 2016/04/07 20:02:19 jmc Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -178,14 +178,14 @@ static struct option enc_options[] = {
{
.name = "iv",
.argname = "IV",
- .desc = "IV to use, specified as a hexidecimal string",
+ .desc = "IV to use, specified as a hexadecimal string",
.type = OPTION_ARG,
.opt.arg = &enc_config.hiv,
},
{
.name = "K",
.argname = "key",
- .desc = "Key to use, specified as a hexidecimal string",
+ .desc = "Key to use, specified as a hexadecimal string",
.type = OPTION_ARG,
.opt.arg = &enc_config.hkey,
},
@@ -256,7 +256,7 @@ static struct option enc_options[] = {
{
.name = "S",
.argname = "salt",
- .desc = "Salt to use, specified as a hexidecimal string",
+ .desc = "Salt to use, specified as a hexadecimal string",
.type = OPTION_ARG,
.opt.arg = &enc_config.hsalt,
},