summaryrefslogtreecommitdiff
path: root/src/analysis/scan/rule.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2023-09-12 21:55:01 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2023-09-12 21:55:01 (GMT)
commit31131323ee211aed77d01bdac61ad371524620a2 (patch)
tree3fad07f6b53b62e60b4bfbb572512e6865a63281 /src/analysis/scan/rule.c
parent6f160d1b1e1bfdd06414d5b6c49a0c9d9fc8a830 (diff)
Delete lots of debug output.
Diffstat (limited to 'src/analysis/scan/rule.c')
-rw-r--r--src/analysis/scan/rule.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/analysis/scan/rule.c b/src/analysis/scan/rule.c
index a1fcfcb..a7d7765 100644
--- a/src/analysis/scan/rule.c
+++ b/src/analysis/scan/rule.c
@@ -333,8 +333,6 @@ GSearchPattern **g_scan_rule_get_local_variables(GScanRule *rule, const char *ta
regex = strprep(regex, "^");
regex = stradd(regex, "$");
- printf("regex: %s\n", regex);
-
ret = regcomp(&preg, regex, REG_NOSUB);
if (ret != 0)
@@ -362,8 +360,6 @@ GSearchPattern **g_scan_rule_get_local_variables(GScanRule *rule, const char *ta
}
- printf(" ==> found: %zu patterns for '%s'\n", *count, target);
-
if (*count == 0)
{
free(result);