diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-07-13 11:10:21 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-07-13 11:10:21 +0000 |
commit | 94fd57314a98ce5b07f0c9a54b094a0f1088ca89 (patch) | |
tree | 94a383a0d8c2c8f4a929f892b2e210e089b4b3a0 /lib/libssl | |
parent | 833bc1a0c02a706c42287b72ca3791c12ca5a61e (diff) |
Don't include asn1_mac.h if all you need is asn1.h.
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/src/crypto/asn1/a_d2i_fp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/asn1/a_d2i_fp.c b/lib/libssl/src/crypto/asn1/a_d2i_fp.c index cf1461bd2d8..c0fb0a38026 100644 --- a/lib/libssl/src/crypto/asn1/a_d2i_fp.c +++ b/lib/libssl/src/crypto/asn1/a_d2i_fp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: a_d2i_fp.c,v 1.10 2014/07/11 08:44:47 jsing Exp $ */ +/* $OpenBSD: a_d2i_fp.c,v 1.11 2014/07/13 11:10:20 miod Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -59,7 +59,7 @@ #include <limits.h> #include <stdio.h> -#include <openssl/asn1_mac.h> +#include <openssl/asn1.h> #include <openssl/buffer.h> #include <openssl/err.h> |