diff --git a/src/bin/evtxls/main.rs b/src/bin/evtxls/main.rs index 7d1d845..a278074 100644 --- a/src/bin/evtxls/main.rs +++ b/src/bin/evtxls/main.rs @@ -80,7 +80,7 @@ impl EvtxLs { } if let Some(not_after) = self.cli.not_after.as_ref() { - if &record.timestamp < not_after { + if &record.timestamp > not_after { continue; } }