From: Jason Ish Date: Mon, 13 Aug 2018 04:40:10 +0000 (-0600) Subject: dhcp: remove println!() that got committed X-Git-Tag: suricata-4.1.0-rc2~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7bc2469eb1ce91d6901c934579487f74fc5652e3;p=thirdparty%2Fsuricata.git dhcp: remove println!() that got committed --- diff --git a/rust/src/dhcp/parser.rs b/rust/src/dhcp/parser.rs index 411a3b445e..6c4fb4dd09 100644 --- a/rust/src/dhcp/parser.rs +++ b/rust/src/dhcp/parser.rs @@ -212,7 +212,6 @@ pub fn dhcp_parse(input: &[u8]) -> IResult<&[u8], DHCPMessage> { } } IResult::Incomplete(_) => { - println!("incomplete parsing options"); truncated_options = true; break; }