From: James Yonan Date: Thu, 11 Aug 2011 07:03:39 +0000 (+0000) Subject: Increased the --verb threshold for "PID_ERR replay" messages X-Git-Tag: v2.3-alpha1~207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5455b3989559ee3278b24af5b78b1d750d8aa531;p=thirdparty%2Fopenvpn.git Increased the --verb threshold for "PID_ERR replay" messages to 4 from 3. Version 2.1.10 git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@7522 e7ae566f-a301-0410-adde-c780ea21d3b5 --- diff --git a/packet_id.c b/packet_id.c index 9bbfbf32c..024b4f35e 100644 --- a/packet_id.c +++ b/packet_id.c @@ -231,8 +231,8 @@ packet_id_test (struct packet_id_rec *p, return true; else { - /* might want to increase this to D_PID_DEBUG_MEDIUM (or even D_PID_DEBUG) in the future */ - packet_id_debug (D_PID_DEBUG_LOW, p, pin, "PID_ERR replay", diff); + /* raised from D_PID_DEBUG_LOW to reduce verbosity */ + packet_id_debug (D_PID_DEBUG_MEDIUM, p, pin, "PID_ERR replay", diff); return false; } }