diff options
author | tb <> | 2021-12-24 02:04:00 +0000 |
---|---|---|
committer | tb <> | 2021-12-24 02:04:00 +0000 |
commit | dc9f42fbb6d666d3d47d6976836ce81ed7674d8f (patch) | |
tree | a7ebf354db9a7d55bbaf8fabe3c1c384d1eb58ab /src | |
parent | 2a6ad3d378214786ed277d168beba46710d74207 (diff) | |
download | openbsd-dc9f42fbb6d666d3d47d6976836ce81ed7674d8f.tar.gz openbsd-dc9f42fbb6d666d3d47d6976836ce81ed7674d8f.tar.bz2 openbsd-dc9f42fbb6d666d3d47d6976836ce81ed7674d8f.zip |
Fix indent of a comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/x509/x509_asid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_asid.c b/src/lib/libcrypto/x509/x509_asid.c index 8d664465c7..3e6f025232 100644 --- a/src/lib/libcrypto/x509/x509_asid.c +++ b/src/lib/libcrypto/x509/x509_asid.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_asid.c,v 1.20 2021/12/18 16:58:20 tb Exp $ */ | 1 | /* $OpenBSD: x509_asid.c,v 1.21 2021/12/24 02:04:00 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Contributed to the OpenSSL Project by the American Registry for | 3 | * Contributed to the OpenSSL Project by the American Registry for |
4 | * Internet Numbers ("ARIN"). | 4 | * Internet Numbers ("ARIN"). |
@@ -361,7 +361,7 @@ ASIdOrRange_cmp(const ASIdOrRange *const *a_, const ASIdOrRange *const *b_) | |||
361 | { | 361 | { |
362 | const ASIdOrRange *a = *a_, *b = *b_; | 362 | const ASIdOrRange *a = *a_, *b = *b_; |
363 | 363 | ||
364 | /* XXX: these asserts need to be replaced */ | 364 | /* XXX: these asserts need to be replaced */ |
365 | OPENSSL_assert((a->type == ASIdOrRange_id && a->u.id != NULL) || | 365 | OPENSSL_assert((a->type == ASIdOrRange_id && a->u.id != NULL) || |
366 | (a->type == ASIdOrRange_range && a->u.range != NULL && | 366 | (a->type == ASIdOrRange_range && a->u.range != NULL && |
367 | a->u.range->min != NULL && a->u.range->max != NULL)); | 367 | a->u.range->min != NULL && a->u.range->max != NULL)); |