Skip to content

Commit

Permalink
Merge pull request #8 from phantinuss/main
Browse files Browse the repository at this point in the history
fix: correct comparison in evtxls `--to` timestamp
  • Loading branch information
Bitbee0 authored Oct 30, 2023
2 parents 6fab979 + d935745 commit ea3fd1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/evtxls/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit ea3fd1f

Please sign in to comment.