From: tb Date: Wed, 5 Jul 2023 12:56:52 +0000 (+0000) Subject: Missing . in comment X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=2979b3a0422e44e9cb308f99c951faa0b2c845bb;p=openbsd Missing . in comment --- diff --git a/lib/libcrypto/ecdsa/ecdsa.c b/lib/libcrypto/ecdsa/ecdsa.c index 2da020d0b49..28c5d666dd3 100644 --- a/lib/libcrypto/ecdsa/ecdsa.c +++ b/lib/libcrypto/ecdsa/ecdsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecdsa.c,v 1.5 2023/07/05 12:54:46 tb Exp $ */ +/* $OpenBSD: ecdsa.c,v 1.6 2023/07/05 12:56:52 tb Exp $ */ /* ==================================================================== * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. * @@ -615,7 +615,7 @@ ecdsa_verify(int type, const unsigned char *digest, int digest_len, if (d2i_ECDSA_SIG(&s, &p, sig_len) == NULL) goto err; - /* Ensure signature uses DER and doesn't have trailing garbage */ + /* Ensure signature uses DER and doesn't have trailing garbage. */ if ((der_len = i2d_ECDSA_SIG(s, &der)) != sig_len) goto err; if (timingsafe_memcmp(sigbuf, der, der_len))