diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-01-07 17:11:54 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-01-07 17:11:54 +0100 |
commit | 2154108bb16d7b0301200d2388d1e43aad4860f5 (patch) | |
tree | 121879f270c03312ed45b12b0276368f174ecbb5 /lib/gnutls_global.h | |
parent | 819e6cf6dada1facbb3080781d8cf620dcef973c (diff) | |
download | gnutls-2154108bb16d7b0301200d2388d1e43aad4860f5.tar.gz |
Cleanup logger function type.
Diffstat (limited to 'lib/gnutls_global.h')
-rw-r--r-- | lib/gnutls_global.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/gnutls_global.h b/lib/gnutls_global.h index 3305ebadc3..21416db080 100644 --- a/lib/gnutls_global.h +++ b/lib/gnutls_global.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation + * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2009 Free Software Foundation * * Author: Nikos Mavrogiannopoulos * @@ -32,11 +32,14 @@ int gnutls_is_secure_memory (const void *mem); extern ASN1_TYPE _gnutls_pkix1_asn; extern ASN1_TYPE _gnutls_gnutls_asn; -/* removed const from node_asn* to +/* removed const from node_asn* to * 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) +extern gnutls_log_func _gnutls_log_func; +extern int _gnutls_log_level; + #endif |