diff options
author | tb <> | 2025-08-19 21:54:11 +0000 |
---|---|---|
committer | tb <> | 2025-08-19 21:54:11 +0000 |
commit | 9d69d67ca38bbc82a83d8cdbe2263c7b81f03264 (patch) | |
tree | 007c370a5144ad9c018427eb67ff3155d677b174 /src | |
parent | 0bba3e5b11194c276e89c89f28565ac18d677bb9 (diff) | |
download | openbsd-9d69d67ca38bbc82a83d8cdbe2263c7b81f03264.tar.gz openbsd-9d69d67ca38bbc82a83d8cdbe2263c7b81f03264.tar.bz2 openbsd-9d69d67ca38bbc82a83d8cdbe2263c7b81f03264.zip |
x_crl.c: wont -> won't + KNF for a comment
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/asn1/x_crl.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/x_crl.c b/src/lib/libcrypto/asn1/x_crl.c index 19caf56cec..59f867bc12 100644 --- a/src/lib/libcrypto/asn1/x_crl.c +++ b/src/lib/libcrypto/asn1/x_crl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x_crl.c,v 1.50 2025/07/10 18:48:31 tb Exp $ */ | 1 | /* $OpenBSD: x_crl.c,v 1.51 2025/08/19 21:54:11 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -105,8 +105,9 @@ X509_REVOKED_cmp(const X509_REVOKED * const *a, const X509_REVOKED * const *b) | |||
105 | return ASN1_INTEGER_cmp((*a)->serialNumber, (*b)->serialNumber); | 105 | return ASN1_INTEGER_cmp((*a)->serialNumber, (*b)->serialNumber); |
106 | } | 106 | } |
107 | 107 | ||
108 | /* The X509_CRL_INFO structure needs a bit of customisation. | 108 | /* |
109 | * Since we cache the original encoding the signature wont be affected by | 109 | * The X509_CRL_INFO structure needs a bit of customisation. |
110 | * Since we cache the original encoding, the signature won't be affected by | ||
110 | * reordering of the revoked field. | 111 | * reordering of the revoked field. |
111 | */ | 112 | */ |
112 | static int | 113 | static int |