projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Reorganise parameters for OPENSSL_gmtime_diff.
[openssl.git]
/
crypto
/
asn1
/
a_time.c
diff --git
a/crypto/asn1/a_time.c
b/crypto/asn1/a_time.c
index 546d615c7d1afa14c86998780ce67c9ef4b55f35..e0d3d42d67ffa9a60e6325d02371659ab50c0d27 100644
(file)
--- a/
crypto/asn1/a_time.c
+++ b/
crypto/asn1/a_time.c
@@
-225,5
+225,5
@@
int ASN1_TIME_diff(int *pday, int *psec,
return 0;
if (!asn1_time_to_tm(&tm_to, to))
return 0;
- return OPENSSL_gmtime_diff(
&tm_from, &tm_to, pday, psec
);
+ return OPENSSL_gmtime_diff(
pday, psec, &tm_from, &tm_to
);
}