aboutsummaryrefslogtreecommitdiffstats
path: root/src/ruleparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ruleparser.cpp')
-rw-r--r--src/ruleparser.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ruleparser.cpp b/src/ruleparser.cpp
index e6ba7b5..0f675dd 100644
--- a/src/ruleparser.cpp
+++ b/src/ruleparser.cpp
@@ -104,6 +104,8 @@ void Rules::load()
match.action = Match::Export;
else if (action == "ignore")
match.action = Match::Ignore;
+ else if (action == "recurse")
+ match.action = Match::Recurse;
else
qFatal("Invalid action \"%s\" on line %d", qPrintable(action), lineNumber);
continue;