diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2015-09-30 18:26:08 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2015-09-30 18:26:08 +0000 |
commit | c16fc354688b60ad16d1f69d943637dd1f342292 (patch) | |
tree | 8411aab7e71b79366c87e6b3fa577fd46ca02738 | |
parent | d260536199ef23624e1f09110728617b2f522e16 (diff) |
Replace M_ASN1_UTCTIME_(new|free) with ASN1_UTCTIME_(new|free).
-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; } |