summaryrefslogtreecommitdiffstats
path: root/src/config.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.y')
-rw-r--r--src/config.y4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.y b/src/config.y
index a064d97..2e111ff 100644
--- a/src/config.y
+++ b/src/config.y
@@ -84,6 +84,7 @@
%token TOK_ESTABLISH
%token TOK_FATAL
%token TOK_FLOAT
+%token TOK_FORCE
%token TOK_FORWARD
%token TOK_FROM
%token TOK_GROUP
@@ -244,6 +245,9 @@ drop_capabilities_enabled:
TOK_EARLY {
$$ = DROP_CAPS_EARLY;
}
+ | TOK_FORCE {
+ $$ = DROP_CAPS_FORCE;
+ }
| boolean {
$$ = $1 ? DROP_CAPS_ON : DROP_CAPS_OFF;
}