From 39a23d8d1b2240ba826dad464e45a1d5b0f2adc5 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 28 Oct 2016 12:23:23 +0200 Subject: [PATCH] flowint: allow / in name --- src/detect-flowint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect-flowint.c b/src/detect-flowint.c index e8a7a2c7d9..cdc8851c87 100644 --- a/src/detect-flowint.c +++ b/src/detect-flowint.c @@ -47,7 +47,7 @@ #include "util-profiling.h" /* name modifiers value */ -#define PARSE_REGEX "^\\s*([a-zA-Z][\\w\\d_.]+)\\s*,\\s*([+=-]{1}|==|!=|<|<=|>|>=|isset|notset)\\s*,?\\s*([a-zA-Z][\\w\\d]+|[\\d]{1,10})?\\s*$" +#define PARSE_REGEX "^\\s*([a-zA-Z][\\w\\d_./]+)\\s*,\\s*([+=-]{1}|==|!=|<|<=|>|>=|isset|notset)\\s*,?\\s*([a-zA-Z][\\w\\d]+|[\\d]{1,10})?\\s*$" /* Varnames must begin with a letter */ static pcre *parse_regex;