detect/rules: Fix copy/paste error

This commit corrects a copy/paste error handling the `include-mpm-stats`
configuration setting.
pull/5464/head
Jeff Lucovsky 5 years ago committed by Victor Julien
parent 41967a53ec
commit db9776af64

@ -1807,7 +1807,7 @@ int SigAddressPrepareStage4(DetectEngineCtx *de_ctx)
int add_rules = 0;
(void)ConfGetBool("detect.profiling.grouping.include-rules", &add_rules);
int add_mpm_stats = 0;
(void)ConfGetBool("detect.profiling.grouping.include-mpm-stats", &add_rules);
(void)ConfGetBool("detect.profiling.grouping.include-mpm-stats", &add_mpm_stats);
RulesDumpGrouping(de_ctx, add_rules, add_mpm_stats);
}

Loading…
Cancel
Save