summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2018-04-25 19:58:53 +0000
committertb <>2018-04-25 19:58:53 +0000
commit7702f5446598355abd127980a4b3ff571b001dc3 (patch)
tree9cc2bace7a12732c4289f76efe071ee65c6e1af9 /src
parent1831e7feb6d7e55b3d38e4d351404e713e18e56d (diff)
downloadopenbsd-7702f5446598355abd127980a4b3ff571b001dc3.tar.gz
openbsd-7702f5446598355abd127980a4b3ff571b001dc3.tar.bz2
openbsd-7702f5446598355abd127980a4b3ff571b001dc3.zip
Put function name on a separate line and zap stray whitespace.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/asn1/t_x509.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/t_x509.c b/src/lib/libcrypto/asn1/t_x509.c
index 3dfaaa40bc..9ad3625653 100644
--- a/src/lib/libcrypto/asn1/t_x509.c
+++ b/src/lib/libcrypto/asn1/t_x509.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: t_x509.c,v 1.28 2017/04/03 15:52:59 beck Exp $ */ 1/* $OpenBSD: t_x509.c,v 1.29 2018/04/25 19:58:53 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -246,7 +246,8 @@ err:
246 return (ret); 246 return (ret);
247} 247}
248 248
249int X509_ocspid_print (BIO *bp, X509 *x) 249int
250X509_ocspid_print(BIO *bp, X509 *x)
250{ 251{
251 unsigned char *der = NULL; 252 unsigned char *der = NULL;
252 unsigned char *dertmp; 253 unsigned char *dertmp;
@@ -387,7 +388,7 @@ ASN1_TIME_print(BIO *bp, const ASN1_TIME *tm)
387} 388}
388 389
389static const char *mon[12] = { 390static const char *mon[12] = {
390 "Jan", "Feb", "Mar", "Apr", "May", "Jun", 391 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
391 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" 392 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
392}; 393};
393 394