Skip to content

Commit

Permalink
Don't clear flowStartMilliseconds when flowEndMilliseconds==0
Browse files Browse the repository at this point in the history
This is a trivial bug introduced in
2224193
  • Loading branch information
g0tar authored Dec 13, 2023
1 parent 93797b2 commit aaaee7e
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 aaaee7e

Please sign in to comment.