summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2019-04-16 19:31:07 +0000
committertb <tb@openbsd.org>2019-04-16 19:31:07 +0000
commitb6a68c35add9478dd1fafb8861aea7a03c5965d8 (patch)
tree0a73c1f3e6ce776cc5c26707fca6e2d9fda36a5e
parentMove function types to their own lines; rewrap. (diff)
downloadwireguard-openbsd-b6a68c35add9478dd1fafb8861aea7a03c5965d8.tar.xz
wireguard-openbsd-b6a68c35add9478dd1fafb8861aea7a03c5965d8.zip
wrap an overlong line and kill a space before a tab
-rw-r--r--lib/libcrypto/x509v3/v3_utl.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libcrypto/x509v3/v3_utl.c b/lib/libcrypto/x509v3/v3_utl.c
index d9c06af8231..389e26b5071 100644
--- a/lib/libcrypto/x509v3/v3_utl.c
+++ b/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;