summaryrefslogtreecommitdiffstats
path: root/apps/opt.c
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-06-14 23:02:16 +0200
committerRich Salz <rsalz@openssl.org>2016-06-16 15:08:57 -0400
commit0ad69cd6c0e14a8257246f84c3117b0ba075bc24 (patch)
tree98c0e7e5b3c868a5bf38278955fe570d0a958739 /apps/opt.c
parent2b1343b91478a9f230186535e82ed1f9db069221 (diff)
Spelling fixes
Reviewed-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1219)
Diffstat (limited to 'apps/opt.c')
-rw-r--r--apps/opt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/opt.c b/apps/opt.c
index 87d3e4de63..d694fe15f2 100644
--- a/apps/opt.c
+++ b/apps/opt.c
@@ -74,7 +74,7 @@ char *opt_progname(const char *argv0)
{
const char *p, *q;
- /* Find last special charcter sys:[foo.bar]openssl */
+ /* Find last special character sys:[foo.bar]openssl */
for (p = argv0 + strlen(argv0); --p > argv0;)
if (*p == ':' || *p == ']' || *p == '>') {
p++;
@@ -857,7 +857,7 @@ void opt_help(const OPTIONS *list)
start[sizeof start - 1] = '\0';
if (o->name == OPT_MORE_STR) {
- /* Continuation of previous line; padd and print. */
+ /* Continuation of previous line; pad and print. */
start[width] = '\0';
BIO_printf(bio_err, "%s %s\n", start, help);
continue;