Skip to content

Commit

Permalink
Merge pull request #489 from g0tar/keep_flowStartMilliseconds
Browse files Browse the repository at this point in the history
Don't clear flowStartMilliseconds when flowEndMilliseconds==0
  • Loading branch information
phaag authored Dec 15, 2023
2 parents 93797b2 + aaaee7e commit 305f1be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inline/nffile_inline.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ static inline void ExpandRecord_v3(recordHeaderV3_t *v3Record, master_record_t *

#ifdef NSEL
if (output_record->msecFirst == 0) output_record->msecFirst = output_record->msecEvent;
if (output_record->msecLast == 0) output_record->msecFirst = output_record->msecEvent;
if (output_record->msecLast == 0) output_record->msecLast = output_record->msecEvent;
#endif

#ifdef DEVEL
Expand Down

0 comments on commit 305f1be

Please sign in to comment.