aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bin/packet_analyzer.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bin/packet_analyzer.rs b/src/bin/packet_analyzer.rs
index 9348a08..96fcfd2 100644
--- a/src/bin/packet_analyzer.rs
+++ b/src/bin/packet_analyzer.rs
@@ -39,11 +39,8 @@ async fn main() -> Result<()> {
// Attempt to load the identities file from disk and load all the identities
let identity_string = std::fs::read_to_string(args.identities_file)?;
let keystore_in: KeystoreInput = toml::from_str(&identity_string)?;
-
let keystore = keystore_in.compile();
- // println!("Keystore: \n{:#?}", keystore);
-
// Pcapng file for loading packets
let pcap_file = File::open(args.pcap_file).await?;
let mut pcap_reader = PcapNgReader::new(pcap_file).await?;