diff options
author | bluhm <> | 2019-03-21 17:52:26 +0000 |
---|---|---|
committer | bluhm <> | 2019-03-21 17:52:26 +0000 |
commit | 4b69e569a2d9519abb4e7e10e2640d010e7d2744 (patch) | |
tree | d4c71883bbe177b6baf5d88cb8291a632d61c143 /src | |
parent | 65eca37493d312bc1b0570e76d99874a39b2d52f (diff) | |
download | openbsd-4b69e569a2d9519abb4e7e10e2640d010e7d2744.tar.gz openbsd-4b69e569a2d9519abb4e7e10e2640d010e7d2744.tar.bz2 openbsd-4b69e569a2d9519abb4e7e10e2640d010e7d2744.zip |
Fix typo in usage and comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/interop/cipher/Makefile | 4 | ||||
-rw-r--r-- | src/regress/lib/libssl/interop/client.c | 4 | ||||
-rw-r--r-- | src/regress/lib/libssl/interop/server.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/regress/lib/libssl/interop/cipher/Makefile b/src/regress/lib/libssl/interop/cipher/Makefile index 5593ab233f..f300b86aa7 100644 --- a/src/regress/lib/libssl/interop/cipher/Makefile +++ b/src/regress/lib/libssl/interop/cipher/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2019/02/21 23:06:33 bluhm Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2019/03/21 17:52:26 bluhm Exp $ |
2 | 2 | ||
3 | # Connect a client to a server. Both can be current libressl, or | 3 | # Connect a client to a server. Both can be current libressl, or |
4 | # openssl 1.0.2, or openssl 1.1. Create lists of supported ciphers | 4 | # openssl 1.0.2, or openssl 1.1. Create lists of supported ciphers |
@@ -94,7 +94,7 @@ client-${clib}-server-${slib}.ciphers: \ | |||
94 | # get ciphers shared between client and server | 94 | # get ciphers shared between client and server |
95 | sort client-${clib}.ciphers server-${slib}.ciphers >$@.tmp | 95 | sort client-${clib}.ciphers server-${slib}.ciphers >$@.tmp |
96 | uniq -d <$@.tmp >$@ | 96 | uniq -d <$@.tmp >$@ |
97 | # we are only interested in cipers supported by libressl | 97 | # we are only interested in ciphers supported by libressl |
98 | sort $@ client-libressl.ciphers >$@.tmp | 98 | sort $@ client-libressl.ciphers >$@.tmp |
99 | uniq -d <$@.tmp >$@ | 99 | uniq -d <$@.tmp >$@ |
100 | rm $@.tmp | 100 | rm $@.tmp |
diff --git a/src/regress/lib/libssl/interop/client.c b/src/regress/lib/libssl/interop/client.c index 136dc38d09..27ad9a0ade 100644 --- a/src/regress/lib/libssl/interop/client.c +++ b/src/regress/lib/libssl/interop/client.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: client.c,v 1.7 2019/02/21 23:06:33 bluhm Exp $ */ | 1 | /* $OpenBSD: client.c,v 1.8 2019/03/21 17:52:26 bluhm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018-2019 Alexander Bluhm <bluhm@openbsd.org> | 3 | * Copyright (c) 2018-2019 Alexander Bluhm <bluhm@openbsd.org> |
4 | * | 4 | * |
@@ -35,7 +35,7 @@ void __dead | |||
35 | usage(void) | 35 | usage(void) |
36 | { | 36 | { |
37 | fprintf(stderr, "usage: client [-Lsv] [-C CA] [-c crt -k key] " | 37 | fprintf(stderr, "usage: client [-Lsv] [-C CA] [-c crt -k key] " |
38 | "[-l cipers] host port\n"); | 38 | "[-l ciphers] host port\n"); |
39 | exit(2); | 39 | exit(2); |
40 | } | 40 | } |
41 | 41 | ||
diff --git a/src/regress/lib/libssl/interop/server.c b/src/regress/lib/libssl/interop/server.c index ee9c7c70a0..6723817498 100644 --- a/src/regress/lib/libssl/interop/server.c +++ b/src/regress/lib/libssl/interop/server.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: server.c,v 1.7 2019/02/21 23:06:33 bluhm Exp $ */ | 1 | /* $OpenBSD: server.c,v 1.8 2019/03/21 17:52:26 bluhm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018-2019 Alexander Bluhm <bluhm@openbsd.org> | 3 | * Copyright (c) 2018-2019 Alexander Bluhm <bluhm@openbsd.org> |
4 | * | 4 | * |
@@ -36,7 +36,7 @@ void __dead | |||
36 | usage(void) | 36 | usage(void) |
37 | { | 37 | { |
38 | fprintf(stderr, "usage: server [-Lsvv] [-C CA] [-c crt -k key] " | 38 | fprintf(stderr, "usage: server [-Lsvv] [-C CA] [-c crt -k key] " |
39 | "[-l cipers] [-p dhparam] [host port]\n"); | 39 | "[-l ciphers] [-p dhparam] [host port]\n"); |
40 | exit(2); | 40 | exit(2); |
41 | } | 41 | } |
42 | 42 | ||