diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-03-21 17:52:27 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-03-21 17:52:27 +0000 |
commit | c55566973f756b8394be7bf2277bb88ce9370ff1 (patch) | |
tree | ad905bf76e1424e4c27c89ea8297d1717cbd90c1 /regress | |
parent | 9ffc004a3b9c94cfad24440e79178b41ad8d39e0 (diff) |
Fix typo in usage and comment.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/interop/cipher/Makefile | 4 | ||||
-rw-r--r-- | regress/lib/libssl/interop/client.c | 4 | ||||
-rw-r--r-- | regress/lib/libssl/interop/server.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/regress/lib/libssl/interop/cipher/Makefile b/regress/lib/libssl/interop/cipher/Makefile index 5593ab233fa..f300b86aa78 100644 --- a/regress/lib/libssl/interop/cipher/Makefile +++ b/regress/lib/libssl/interop/cipher/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2019/02/21 23:06:33 bluhm Exp $ +# $OpenBSD: Makefile,v 1.2 2019/03/21 17:52:26 bluhm Exp $ # Connect a client to a server. Both can be current libressl, or # openssl 1.0.2, or openssl 1.1. Create lists of supported ciphers @@ -94,7 +94,7 @@ client-${clib}-server-${slib}.ciphers: \ # get ciphers shared between client and server sort client-${clib}.ciphers server-${slib}.ciphers >$@.tmp uniq -d <$@.tmp >$@ - # we are only interested in cipers supported by libressl + # we are only interested in ciphers supported by libressl sort $@ client-libressl.ciphers >$@.tmp uniq -d <$@.tmp >$@ rm $@.tmp diff --git a/regress/lib/libssl/interop/client.c b/regress/lib/libssl/interop/client.c index 136dc38d099..27ad9a0ade8 100644 --- a/regress/lib/libssl/interop/client.c +++ b/regress/lib/libssl/interop/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.7 2019/02/21 23:06:33 bluhm Exp $ */ +/* $OpenBSD: client.c,v 1.8 2019/03/21 17:52:26 bluhm Exp $ */ /* * Copyright (c) 2018-2019 Alexander Bluhm <bluhm@openbsd.org> * @@ -35,7 +35,7 @@ void __dead usage(void) { fprintf(stderr, "usage: client [-Lsv] [-C CA] [-c crt -k key] " - "[-l cipers] host port\n"); + "[-l ciphers] host port\n"); exit(2); } diff --git a/regress/lib/libssl/interop/server.c b/regress/lib/libssl/interop/server.c index ee9c7c70a09..67238174986 100644 --- a/regress/lib/libssl/interop/server.c +++ b/regress/lib/libssl/interop/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.7 2019/02/21 23:06:33 bluhm Exp $ */ +/* $OpenBSD: server.c,v 1.8 2019/03/21 17:52:26 bluhm Exp $ */ /* * Copyright (c) 2018-2019 Alexander Bluhm <bluhm@openbsd.org> * @@ -36,7 +36,7 @@ void __dead usage(void) { fprintf(stderr, "usage: server [-Lsvv] [-C CA] [-c crt -k key] " - "[-l cipers] [-p dhparam] [host port]\n"); + "[-l ciphers] [-p dhparam] [host port]\n"); exit(2); } |