ftp: Remove diagnostic print

This commit removes a diagnostic message displayed during extraction of
the EPSV port.
pull/6633/head
Jeff Lucovsky 3 years ago committed by Victor Julien
parent ca7d097225
commit 23faeaea5c

@ -124,8 +124,6 @@ pub fn ftp_epsv_response(i: &[u8]) -> IResult<&[u8], u16> {
let (i, port) = getu16(i)?;
let (i, _) = tag("|)")(i)?;
let (i, _) = opt(complete(tag(".")))(i)?;
use nom7::HexDisplay;
eprintln!("ftp_epsv_response:\n{}", i.to_hex(16));
Ok((i, port))
}

Loading…
Cancel
Save