summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2020-09-14 12:00:55 +0000
committertb <tb@openbsd.org>2020-09-14 12:00:55 +0000
commit384c6309ed1b232ad7c2a9ef9592dace664ddd63 (patch)
treeaccc667bbdb3d97c53f4e27ceb0578af1c5b16ea
parentFix potential leak when tmpext fails to be added to (diff)
downloadwireguard-openbsd-384c6309ed1b232ad7c2a9ef9592dace664ddd63.tar.xz
wireguard-openbsd-384c6309ed1b232ad7c2a9ef9592dace664ddd63.zip
nuke a stray space
-rw-r--r--lib/libcrypto/x509/x509_verify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/x509/x509_verify.c b/lib/libcrypto/x509/x509_verify.c
index 7a97aed8155..80af892d8a4 100644
--- a/lib/libcrypto/x509/x509_verify.c
+++ b/lib/libcrypto/x509/x509_verify.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509_verify.c,v 1.4 2020/09/14 09:01:11 beck Exp $ */
+/* $OpenBSD: x509_verify.c,v 1.5 2020/09/14 12:00:55 tb Exp $ */
/*
* Copyright (c) 2020 Bob Beck <beck@openbsd.org>
*
@@ -280,7 +280,7 @@ x509_verify_parent_signature(X509 *parent, X509 *child,
if (X509_verify(child, pkey) <= 0)
*error = X509_V_ERR_CERT_SIGNATURE_FAILURE;
else
- ret = 1;
+ ret = 1;
/* Add result to cache */
if (child_md != NULL)