diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-03-04 18:04:32 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-03-04 18:04:32 +0100 |
commit | a95110a3887922e2806ea60bc4719711357af1a0 (patch) | |
tree | 6d7520dda7634a960a30d88a32d45666c33f3633 /lib/gnutls_global.h | |
parent | 8b080b39f89d555f9b00ddbc9518689ddcd27d14 (diff) | |
download | gnutls-a95110a3887922e2806ea60bc4719711357af1a0.tar.gz |
Use modern libtasn1 interfaces.
Diffstat (limited to 'lib/gnutls_global.h')
-rw-r--r-- | lib/gnutls_global.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gnutls_global.h b/lib/gnutls_global.h index 21416db080..e53aa22a9a 100644 --- a/lib/gnutls_global.h +++ b/lib/gnutls_global.h @@ -36,8 +36,8 @@ extern ASN1_TYPE _gnutls_gnutls_asn; * prevent warnings, since libtasn1 doesn't * use the const keywork in its functions. */ -#define _gnutls_get_gnutls_asn() ((node_asn*) _gnutls_gnutls_asn) -#define _gnutls_get_pkix() ((node_asn*) _gnutls_pkix1_asn) +#define _gnutls_get_gnutls_asn() ((ASN1_TYPE) _gnutls_gnutls_asn) +#define _gnutls_get_pkix() ((ASN1_TYPE) _gnutls_pkix1_asn) extern gnutls_log_func _gnutls_log_func; extern int _gnutls_log_level; |