summaryrefslogtreecommitdiff
path: root/lib/libcrypto/asn1
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2015-09-30 18:26:08 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2015-09-30 18:26:08 +0000
commit3dd17ea016bc6e27330106f6b38c292c7f8a5b2a (patch)
tree6d3beba5245364b62967d808a2c4ebe6a3e74698 /lib/libcrypto/asn1
parent5ab5830deb4dd4739ac287d29a707393966dc184 (diff)
Replace M_ASN1_UTCTIME_(new|free) with ASN1_UTCTIME_(new|free).
Diffstat (limited to 'lib/libcrypto/asn1')
-rw-r--r--lib/libcrypto/asn1/a_utctm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/asn1/a_utctm.c b/lib/libcrypto/asn1/a_utctm.c
index aed855608d1..ca19a8c7a00 100644
--- a/lib/libcrypto/asn1/a_utctm.c
+++ b/lib/libcrypto/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;
}