diff options
author | tb <> | 2021-10-28 14:24:08 +0000 |
---|---|---|
committer | tb <> | 2021-10-28 14:24:08 +0000 |
commit | 92c51f2dabb85e771eef8b6daf9ee4c6de899d3e (patch) | |
tree | 58de405f451964d421b22351a00aed2afd5b67de | |
parent | 74e183204b1af1dc53ce83472b9f1511ae38f951 (diff) | |
download | openbsd-92c51f2dabb85e771eef8b6daf9ee4c6de899d3e.tar.gz openbsd-92c51f2dabb85e771eef8b6daf9ee4c6de899d3e.tar.bz2 openbsd-92c51f2dabb85e771eef8b6daf9ee4c6de899d3e.zip |
unwrap a line
-rw-r--r-- | src/lib/libcrypto/asn1/a_time.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/a_time.c b/src/lib/libcrypto/asn1/a_time.c index a1109968ce..aa6f1c0773 100644 --- a/src/lib/libcrypto/asn1/a_time.c +++ b/src/lib/libcrypto/asn1/a_time.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: a_time.c,v 1.29 2021/10/27 09:56:43 beck Exp $ */ | 1 | /* $OpenBSD: a_time.c,v 1.30 2021/10/28 14:24:08 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -107,8 +107,7 @@ ASN1_TIME_free(ASN1_TIME *a) | |||
107 | } | 107 | } |
108 | 108 | ||
109 | int | 109 | int |
110 | ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, | 110 | ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to) |
111 | const ASN1_TIME *to) | ||
112 | { | 111 | { |
113 | struct tm tm_from, tm_to; | 112 | struct tm tm_from, tm_to; |
114 | 113 | ||