summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2022-06-30 08:25:57 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2022-06-30 08:25:57 +0000
commit1e0ff18d4f038e55a115af86184acd2bb9a25b2a (patch)
treef6e1cce785baac624a59a78ae50ebba4a36a4132 /lib
parentfcf20baf2458d38b1a2c92ff1272b84e452fbd54 (diff)
whitespace nit
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/asn1/a_time_tm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/asn1/a_time_tm.c b/lib/libcrypto/asn1/a_time_tm.c
index 9ddae82768e..88deec1d2ab 100644
--- a/lib/libcrypto/asn1/a_time_tm.c
+++ b/lib/libcrypto/asn1/a_time_tm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: a_time_tm.c,v 1.22 2022/06/29 08:56:44 beck Exp $ */
+/* $OpenBSD: a_time_tm.c,v 1.23 2022/06/30 08:25:56 tb Exp $ */
/*
* Copyright (c) 2015 Bob Beck <beck@openbsd.org>
*
@@ -285,7 +285,7 @@ asn1_time_parse_cbs(const CBS *cbs, int is_gentime, struct tm *out_tm)
if (!CBS_get_u8(&copy, &tz))
return 0;
- if ( tz != 'Z')
+ if (tz != 'Z')
return 0; /* Reject anything but Z on the end. */
if (CBS_len(&copy) != 0)