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, 2 insertions, 2 deletions
diff --git a/src/config.y b/src/config.y
index 8495e25..0d0a343 100644
--- a/src/config.y
+++ b/src/config.y
@@ -653,8 +653,8 @@ boolean: TOK_YES { $$ = true; }
| TOK_NO { $$ = false; }
;
-autobool: TOK_AUTO { $$ = fastd_tristate_undef; }
- | boolean { $$ = $1 ? fastd_tristate_true : fastd_tristate_false; }
+autobool: TOK_AUTO { $$ = FASTD_TRISTATE_UNDEF; }
+ | boolean { $$ = $1 ? FASTD_TRISTATE_TRUE : FASTD_TRISTATE_FALSE; }
;
colon_or_port: ':'