} \
} while(0)
+#define _gnutls_reason_log(str, status) \
+ do { \
+ if (unlikely(_gnutls_log_level >= 3)) { \
+ gnutls_datum_t _cl_out; int _cl_ret; \
+ _cl_ret = gnutls_certificate_verification_status_print(status, GNUTLS_CRT_X509, &_cl_out, 0); \
+ if (_cl_ret >= 0) { \
+ _gnutls_log( 3, "%s: %s\n", str, _cl_out.data); \
+ gnutls_free(_cl_out.data); \
+ } \
+ } \
+ } while(0)
+
#ifdef C99_MACROS
#define LEVEL(l, ...) do { if (unlikely(_gnutls_log_level >= l)) \
_gnutls_log( l, __VA_ARGS__); } while(0)