summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMarcin Siodelski <marcin@isc.org>2017-06-28 17:37:48 +0200
committerMarcin Siodelski <marcin@isc.org>2017-06-28 17:37:48 +0200
commit63ccfbb04553b64ad20dabb22a3055f6410bb890 (patch)
tree4eb348603164af86d9fc52510b8258bc3b638de6 /common
parentd13749a95d473b7e16b73fbceee30b74f4cb2885 (diff)
downloadisc-dhcp-63ccfbb04553b64ad20dabb22a3055f6410bb890.tar.gz
[master] Changed severity of the log message indicating checksum errors.
Merges in rt41757.
Diffstat (limited to 'common')
-rw-r--r--common/packet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/packet.c b/common/packet.c
index e600e37c..6f51df40 100644
--- a/common/packet.c
+++ b/common/packet.c
@@ -50,7 +50,7 @@ u_int32_t checksum (buf, nbytes, sum)
unsigned i;
#ifdef DEBUG_CHECKSUM
- log_debug ("checksum (%x %d %x)", buf, nbytes, sum);
+ log_debug ("checksum (%x %d %x)", (unsigned)buf, nbytes, sum);
#endif
/* Checksum all the pairs of bytes first... */
@@ -366,8 +366,8 @@ decode_udp_ip_header(struct interface_info *interface,
udp_packets_bad_checksum++;
if (((udp_packets_seen > 4) && (udp_packets_bad_checksum != 0))
&& ((udp_packets_seen / udp_packets_bad_checksum) < 2)) {
- log_info ("%u bad udp checksums in %u packets",
- udp_packets_bad_checksum, udp_packets_seen);
+ log_debug ("%u bad udp checksums in %u packets",
+ udp_packets_bad_checksum, udp_packets_seen);
udp_packets_seen = udp_packets_bad_checksum = 0;
}