diff options
author | 2018-04-25 19:58:53 +0000 | |
---|---|---|
committer | 2018-04-25 19:58:53 +0000 | |
commit | dbdab68da3b0b11846f6b023c8e069c40aa1fd71 (patch) | |
tree | f9a498f728e743592e61bce402e4fa874dce9bc7 | |
parent | tweak previous; (diff) | |
download | wireguard-openbsd-dbdab68da3b0b11846f6b023c8e069c40aa1fd71.tar.xz wireguard-openbsd-dbdab68da3b0b11846f6b023c8e069c40aa1fd71.zip |
Put function name on a separate line and zap stray whitespace.
-rw-r--r-- | lib/libcrypto/asn1/t_x509.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libcrypto/asn1/t_x509.c b/lib/libcrypto/asn1/t_x509.c index 3dfaaa40bca..9ad36256530 100644 --- a/lib/libcrypto/asn1/t_x509.c +++ b/lib/libcrypto/asn1/t_x509.c @@ -1,4 +1,4 @@ -/* $OpenBSD: t_x509.c,v 1.28 2017/04/03 15:52:59 beck Exp $ */ +/* $OpenBSD: t_x509.c,v 1.29 2018/04/25 19:58:53 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -246,7 +246,8 @@ err: return (ret); } -int X509_ocspid_print (BIO *bp, X509 *x) +int +X509_ocspid_print(BIO *bp, X509 *x) { unsigned char *der = NULL; unsigned char *dertmp; @@ -387,7 +388,7 @@ ASN1_TIME_print(BIO *bp, const ASN1_TIME *tm) } static const char *mon[12] = { - "Jan", "Feb", "Mar", "Apr", "May", "Jun", + "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; |