From: Nikos Mavrogiannopoulos Date: Tue, 29 Nov 2011 20:45:41 +0000 (+0100) Subject: removed superfluous check. X-Git-Tag: gnutls_3_0_9~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f34acc1f7c10877515cdbfdffcd890f32d73e31;p=thirdparty%2Fgnutls.git removed superfluous check. --- diff --git a/lib/gnutls_errors.h b/lib/gnutls_errors.h index 9907c63a62..94370ca6bd 100644 --- a/lib/gnutls_errors.h +++ b/lib/gnutls_errors.h @@ -58,7 +58,7 @@ _gnutls_audit_log (gnutls_session_t, const char *fmt, ...) void _gnutls_mpi_log (const char *prefix, bigint_t a); #ifdef C99_MACROS -#define LEVEL(l, ...) do { if (unlikely(_gnutls_log_level >= l || _gnutls_log_level > 9)) \ +#define LEVEL(l, ...) do { if (unlikely(_gnutls_log_level >= l)) \ _gnutls_log( l, __VA_ARGS__); } while(0) #define LEVEL_EQ(l, ...) do { if (unlikely(_gnutls_log_level == l || _gnutls_log_level > 9)) \