From c0ca838b4ad06cbf9fd6cf44511ec2e8a731d0ba Mon Sep 17 00:00:00 2001 From: tb <> Date: Tue, 16 Apr 2019 19:31:07 +0000 Subject: wrap an overlong line and kill a space before a tab --- src/lib/libcrypto/x509v3/v3_utl.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/lib/libcrypto/x509v3/v3_utl.c b/src/lib/libcrypto/x509v3/v3_utl.c index d9c06af823..389e26b507 100644 --- a/src/lib/libcrypto/x509v3/v3_utl.c +++ b/src/lib/libcrypto/x509v3/v3_utl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: v3_utl.c,v 1.34 2019/04/16 19:25:36 tb Exp $ */ +/* $OpenBSD: v3_utl.c,v 1.35 2019/04/16 19:31:07 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ @@ -750,7 +750,8 @@ equal_email(const unsigned char *a, size_t a_len, const unsigned char *b, while (pos > 0) { pos--; if (a[pos] == '@' || b[pos] == '@') { - if (!equal_nocase(a + pos, a_len - pos, b + pos, a_len - pos, 0)) + if (!equal_nocase(a + pos, a_len - pos, b + pos, + a_len - pos, 0)) return 0; break; } @@ -1221,7 +1222,7 @@ ipv6_from_asc(unsigned char *v6, const char *in) /* Treat the IPv6 representation as a list of values * separated by ':'. The presence of a '::' will parse - * as one, two or three zero length elements. + * as one, two or three zero length elements. */ if (!CONF_parse_list(in, ':', 0, ipv6_cb, &v6stat)) return 0; -- cgit v1.2.3-55-g6feb