From: Nikos Mavrogiannopoulos Date: Wed, 30 Oct 2013 18:43:00 +0000 (+0100) Subject: Duplicate messages moved from audit log to debug log. There are networks where this... X-Git-Tag: gnutls_3_2_6~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf26d2bd1449145cc1654ed831864b489c18633a;p=thirdparty%2Fgnutls.git Duplicate messages moved from audit log to debug log. There are networks where this is extremely common. --- diff --git a/lib/gnutls_record.c b/lib/gnutls_record.c index bc62081495..8c2f8bda4e 100644 --- a/lib/gnutls_record.c +++ b/lib/gnutls_record.c @@ -1226,7 +1226,7 @@ begin: ret = _dtls_record_check(record_params, packet_sequence); if (ret < 0) { - _gnutls_audit_log(session, "Discarded duplicate message[%u.%u]: %s\n", + _gnutls_debug_log("Discarded duplicate message[%u.%u]: %s\n", (unsigned int)record.sequence.i[0]*256 +(unsigned int)record.sequence.i[1], (unsigned int) _gnutls_uint64touint32 (packet_sequence), _gnutls_packet2str (record.type)); goto sanity_check_error;