1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Add a period to a comment

Pointed out by jsing
This commit is contained in:
tb 2022-06-28 20:54:16 +00:00
parent a1ab956a02
commit 71ad71950e

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssl_seclevel.c,v 1.4 2022/06/28 20:53:32 tb Exp $ */
/* $OpenBSD: ssl_seclevel.c,v 1.5 2022/06/28 20:54:16 tb Exp $ */
/*
* Copyright (c) 2020 Theo Buehler <tb@openbsd.org>
*
@ -101,7 +101,7 @@ ssl_security_secop_cipher(const SSL_CTX *ctx, const SSL *ssl, int bits,
if (bits < minimum_bits)
return 0;
/* No unauthenticated ciphersuites */
/* No unauthenticated ciphersuites. */
if (cipher->algorithm_auth & SSL_aNULL)
return 0;