diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-05-11 18:48:48 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-05-11 18:48:48 +0000 |
commit | fc1542ed3c909eb7eb759a5d14b0601ec34849d4 (patch) | |
tree | b0d97e93e7448a1dd62a04ff3a7aebf074da2de0 /lib/libcrypto | |
parent | aad54cede52f6bcf78112aee2af9b7f5d309bfb4 (diff) |
Unwrap a line
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/x509/x509_lib.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libcrypto/x509/x509_lib.c b/lib/libcrypto/x509/x509_lib.c index c5151d407ef..1772692f2bd 100644 --- a/lib/libcrypto/x509/x509_lib.c +++ b/lib/libcrypto/x509/x509_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_lib.c,v 1.17 2024/03/02 10:35:32 tb Exp $ */ +/* $OpenBSD: x509_lib.c,v 1.18 2024/05/11 18:48:47 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -180,8 +180,7 @@ X509V3_EXT_d2i(X509_EXTENSION *ext) return NULL; p = ext->value->data; if (method->it) - return ASN1_item_d2i(NULL, &p, ext->value->length, - method->it); + return ASN1_item_d2i(NULL, &p, ext->value->length, method->it); return method->d2i(NULL, &p, ext->value->length); } LCRYPTO_ALIAS(X509V3_EXT_d2i); |