summaryrefslogtreecommitdiffstats
path: root/src/config.y
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-08-28 13:39:18 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-08-28 13:39:18 +0200
commit738639cf711c254bcafbb869837a87ea46413c5a (patch)
tree899a6ac9148d30383239af453748c2f8bf919d90 /src/config.y
parent81bff2df037a218cb973559a2bfbfbd259b1cbad (diff)
downloadfastd-738639cf711c254bcafbb869837a87ea46413c5a.tar
fastd-738639cf711c254bcafbb869837a87ea46413c5a.zip
Introduce constants for tristate values
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 e9ab3af..95ceaa2 100644
--- a/src/config.y
+++ b/src/config.y
@@ -560,8 +560,8 @@ boolean: TOK_YES { $$ = true; }
| TOK_NO { $$ = false; }
;
-autobool: TOK_AUTO { $$ = (fastd_tristate_t){ .set = false }; }
- | boolean { $$ = (fastd_tristate_t){ .set = true, .state = $1 }; }
+autobool: TOK_AUTO { $$ = fastd_tristate_undef; }
+ | boolean { $$ = $1 ? fastd_tristate_true : fastd_tristate_false; }
;
colon_or_port: ':'