diff options
| author | tb <> | 2022-06-20 19:42:58 +0000 |
|---|---|---|
| committer | tb <> | 2022-06-20 19:42:58 +0000 |
| commit | 0c232807de21f389f04ef3f8c2f3fb8d2e093e8c (patch) | |
| tree | e6cea7ce209fd8a8e8041265a7a92a28b5db4328 /src | |
| parent | 16c1ab5f46851d4a5688e7e105a6f3c31414a523 (diff) | |
| download | openbsd-0c232807de21f389f04ef3f8c2f3fb8d2e093e8c.tar.gz openbsd-0c232807de21f389f04ef3f8c2f3fb8d2e093e8c.tar.bz2 openbsd-0c232807de21f389f04ef3f8c2f3fb8d2e093e8c.zip | |
Tweak a comment
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libcrypto/bn/bn_kron.c | 4 |
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 | /* |
