From 2f1d478512eaf9d1ce1d86f5a427ab97a0a2566f Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 20 Jun 2022 19:42:58 +0000 Subject: [PATCH] Tweak a comment --- lib/libcrypto/bn/bn_kron.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/bn/bn_kron.c b/lib/libcrypto/bn/bn_kron.c index 774e9cef30d..15033ff9dbf 100644 --- a/lib/libcrypto/bn/bn_kron.c +++ b/lib/libcrypto/bn/bn_kron.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_kron.c,v 1.8 2022/06/20 19:38:25 tb Exp $ */ +/* $OpenBSD: bn_kron.c,v 1.9 2022/06/20 19:42:58 tb Exp $ */ /* ==================================================================== * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. * @@ -55,7 +55,7 @@ #include "bn_lcl.h" -/* least significant word */ +/* The least significant word of a BIGNUM. */ #define BN_lsw(n) (((n)->top == 0) ? (BN_ULONG) 0 : (n)->d[0]) /* -- 2.20.1