diff options
author | 2015-09-30 18:26:07 +0000 | |
---|---|---|
committer | 2015-09-30 18:26:07 +0000 | |
commit | eb42d0bc21006c6048279c5ee45eb5c18f33292d (patch) | |
tree | d50515044eb33727c0de3fb5fbd78a6725c27c3b /lib/libssl/src | |
parent | Replace M_ASN1_IA5STRING_(new|free) with ASN1_IA5STRING_(new|free). Same (diff) | |
download | wireguard-openbsd-eb42d0bc21006c6048279c5ee45eb5c18f33292d.tar.xz wireguard-openbsd-eb42d0bc21006c6048279c5ee45eb5c18f33292d.zip |
Replace M_ASN1_UTCTIME_(new|free) with ASN1_UTCTIME_(new|free).
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/asn1/a_utctm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/src/crypto/asn1/a_utctm.c b/lib/libssl/src/crypto/asn1/a_utctm.c index aed855608d1..ca19a8c7a00 100644 --- a/lib/libssl/src/crypto/asn1/a_utctm.c +++ b/lib/libssl/src/crypto/asn1/a_utctm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: a_utctm.c,v 1.27 2014/07/11 08:44:47 jsing Exp $ */ +/* $OpenBSD: a_utctm.c,v 1.28 2015/09/30 18:26:07 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -197,7 +197,7 @@ ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec) ASN1_UTCTIME *tmp = NULL, *ret; if (s == NULL) { - tmp = M_ASN1_UTCTIME_new(); + tmp = ASN1_UTCTIME_new(); if (tmp == NULL) return NULL; s = tmp; @@ -205,7 +205,7 @@ ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec) ret = ASN1_UTCTIME_adj_internal(s, t, offset_day, offset_sec); if (ret == NULL && tmp != NULL) - M_ASN1_UTCTIME_free(tmp); + ASN1_UTCTIME_free(tmp); return ret; } |