summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-06-20 19:42:58 +0000
committertb <>2022-06-20 19:42:58 +0000
commit8d061b8c94a7612312555460a005d275b38e3ae4 (patch)
treee6cea7ce209fd8a8e8041265a7a92a28b5db4328 /src
parent218faa80cadec8577617a5e81e252f96e9adb814 (diff)
downloadopenbsd-8d061b8c94a7612312555460a005d275b38e3ae4.tar.gz
openbsd-8d061b8c94a7612312555460a005d275b38e3ae4.tar.bz2
openbsd-8d061b8c94a7612312555460a005d275b38e3ae4.zip
Tweak a comment
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/bn/bn_kron.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_kron.c b/src/lib/libcrypto/bn/bn_kron.c
index 774e9cef30..15033ff9db 100644
--- a/src/lib/libcrypto/bn/bn_kron.c
+++ b/src/lib/libcrypto/bn/bn_kron.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_kron.c,v 1.8 2022/06/20 19:38:25 tb Exp $ */ 1/* $OpenBSD: bn_kron.c,v 1.9 2022/06/20 19:42:58 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -55,7 +55,7 @@
55 55
56#include "bn_lcl.h" 56#include "bn_lcl.h"
57 57
58/* least significant word */ 58/* The least significant word of a BIGNUM. */
59#define BN_lsw(n) (((n)->top == 0) ? (BN_ULONG) 0 : (n)->d[0]) 59#define BN_lsw(n) (((n)->top == 0) ? (BN_ULONG) 0 : (n)->d[0])
60 60
61/* 61/*