From 8afb34b4589570a17c03dfaf441f983410fc0663 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 12 May 2023 18:39:44 +0000 Subject: x509_utl.c: fix some style nits. --- src/lib/libcrypto/x509/x509_utl.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/lib/libcrypto/x509/x509_utl.c b/src/lib/libcrypto/x509/x509_utl.c index 28e9179e95..78edd67a44 100644 --- a/src/lib/libcrypto/x509/x509_utl.c +++ b/src/lib/libcrypto/x509/x509_utl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_utl.c,v 1.15 2023/05/12 13:56:17 tb Exp $ */ +/* $OpenBSD: x509_utl.c,v 1.16 2023/05/12 18:39:44 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ @@ -520,11 +520,11 @@ x509_skip_colons_cbs(CBS *cbs) } return 1; - } static int -x509_get_xdigit_nibble_cbs(CBS *cbs, uint8_t *out_nibble) { +x509_get_xdigit_nibble_cbs(CBS *cbs, uint8_t *out_nibble) +{ uint8_t c; if (!CBS_get_u8(cbs, &c)) @@ -545,7 +545,6 @@ x509_get_xdigit_nibble_cbs(CBS *cbs, uint8_t *out_nibble) { X509V3error(X509V3_R_ILLEGAL_HEX_DIGIT); return 0; - } unsigned char * -- cgit v1.2.3-55-g6feb