diff options
author | tb <> | 2022-06-28 20:54:16 +0000 |
---|---|---|
committer | tb <> | 2022-06-28 20:54:16 +0000 |
commit | d6d10c30946dba9d5bedcba2a6c96ed71295eaf8 (patch) | |
tree | f3506a264d0b06c986331c8f3b1afcd5d136ae7b /src | |
parent | 78976315e28b9e4c2e12060ea0c297e2c41eca22 (diff) | |
download | openbsd-d6d10c30946dba9d5bedcba2a6c96ed71295eaf8.tar.gz openbsd-d6d10c30946dba9d5bedcba2a6c96ed71295eaf8.tar.bz2 openbsd-d6d10c30946dba9d5bedcba2a6c96ed71295eaf8.zip |
Add a period to a comment
Pointed out by jsing
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/ssl_seclevel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_seclevel.c b/src/lib/libssl/ssl_seclevel.c index 39b1bf341e..6c788c205d 100644 --- a/src/lib/libssl/ssl_seclevel.c +++ b/src/lib/libssl/ssl_seclevel.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_seclevel.c,v 1.4 2022/06/28 20:53:32 tb Exp $ */ | 1 | /* $OpenBSD: ssl_seclevel.c,v 1.5 2022/06/28 20:54:16 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | * Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | * | 4 | * |
@@ -101,7 +101,7 @@ ssl_security_secop_cipher(const SSL_CTX *ctx, const SSL *ssl, int bits, | |||
101 | if (bits < minimum_bits) | 101 | if (bits < minimum_bits) |
102 | return 0; | 102 | return 0; |
103 | 103 | ||
104 | /* No unauthenticated ciphersuites */ | 104 | /* No unauthenticated ciphersuites. */ |
105 | if (cipher->algorithm_auth & SSL_aNULL) | 105 | if (cipher->algorithm_auth & SSL_aNULL) |
106 | return 0; | 106 | return 0; |
107 | 107 | ||