Skip to content

Commit

Permalink
fixup! detect: allow rule which need both directions to match
Browse files Browse the repository at this point in the history
  • Loading branch information
catenacyber committed Jun 6, 2024
1 parent a6d0f48 commit 81185e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detect-engine-state.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ static inline void ResetTxState(DetectEngineState *s)
s->dir_state[i].filestore_cnt = 0;
s->dir_state[i].flags = 0;
/* reset 'cur' back to the list head */
s->dir_state[i].cur = s->dir_state[0].head;
s->dir_state[i].cur = s->dir_state[i].head;
}
}
}
Expand Down

0 comments on commit 81185e9

Please sign in to comment.