Skip to content

Commit

Permalink
doc: add missing and fix 404 for --list-keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbgreen authored and victorjulien committed Dec 20, 2018
1 parent c2adb9e commit 6f5eb48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/detect-bypass.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void DetectBypassRegister(void)
{
sigmatch_table[DETECT_BYPASS].name = "bypass";
sigmatch_table[DETECT_BYPASS].desc = "call the bypass callback when the match of a sig is complete";
sigmatch_table[DETECT_BYPASS].url = DOC_URL DOC_VERSION "rules/bypass-keyword.html";
sigmatch_table[DETECT_BYPASS].url = DOC_URL DOC_VERSION "/rules/bypass-keyword.html";
sigmatch_table[DETECT_BYPASS].Match = DetectBypassMatch;
sigmatch_table[DETECT_BYPASS].Setup = DetectBypassSetup;
sigmatch_table[DETECT_BYPASS].Free = NULL;
Expand Down
1 change: 1 addition & 0 deletions src/detect-prefilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ void DetectPrefilterRegister(void)
{
sigmatch_table[DETECT_PREFILTER].name = "prefilter";
sigmatch_table[DETECT_PREFILTER].desc = "force a condition to be used as prefilter";
sigmatch_table[DETECT_PREFILTER].url = "/rules/prefilter-keywords.html#prefilter";
sigmatch_table[DETECT_PREFILTER].Match = NULL;
sigmatch_table[DETECT_PREFILTER].Setup = DetectPrefilterSetup;
sigmatch_table[DETECT_PREFILTER].Free = NULL;
Expand Down

0 comments on commit 6f5eb48

Please sign in to comment.