summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-06-30 08:25:56 +0000
committertb <>2022-06-30 08:25:56 +0000
commit1a5596563dedb8ac504b1b0982688c2079b13486 (patch)
tree8b3e9ae9338fe3eaab0017cec3ce6fca05e924d4 /src
parent160e092afbead476d3db3539d0b17df4dfc854ec (diff)
downloadopenbsd-1a5596563dedb8ac504b1b0982688c2079b13486.tar.gz
openbsd-1a5596563dedb8ac504b1b0982688c2079b13486.tar.bz2
openbsd-1a5596563dedb8ac504b1b0982688c2079b13486.zip
whitespace nit
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/asn1/a_time_tm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/a_time_tm.c b/src/lib/libcrypto/asn1/a_time_tm.c
index 9ddae82768..88deec1d2a 100644
--- a/src/lib/libcrypto/asn1/a_time_tm.c
+++ b/src/lib/libcrypto/asn1/a_time_tm.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: a_time_tm.c,v 1.22 2022/06/29 08:56:44 beck Exp $ */ 1/* $OpenBSD: a_time_tm.c,v 1.23 2022/06/30 08:25:56 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2015 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2015 Bob Beck <beck@openbsd.org>
4 * 4 *
@@ -285,7 +285,7 @@ asn1_time_parse_cbs(const CBS *cbs, int is_gentime, struct tm *out_tm)
285 285
286 if (!CBS_get_u8(&copy, &tz)) 286 if (!CBS_get_u8(&copy, &tz))
287 return 0; 287 return 0;
288 if ( tz != 'Z') 288 if (tz != 'Z')
289 return 0; /* Reject anything but Z on the end. */ 289 return 0; /* Reject anything but Z on the end. */
290 290
291 if (CBS_len(&copy) != 0) 291 if (CBS_len(&copy) != 0)