diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-11-19 13:46:21 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-11-19 13:46:21 +0100 |
commit | 391931d45686a807d322878d4b3d5c9634e2dbca (patch) | |
tree | 73916db85f6b68eabb5000fdcfe19ade4e7954f3 /proto/static/config.Y | |
parent | 79f561a173c9ceb824d64aa32d82e43ba62acebc (diff) |
Minor finalizations of link state checks.
Diffstat (limited to 'proto/static/config.Y')
-rw-r--r-- | proto/static/config.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/static/config.Y b/proto/static/config.Y index 9f4d7da6..2849015b 100644 --- a/proto/static/config.Y +++ b/proto/static/config.Y @@ -32,7 +32,7 @@ static_proto_start: proto_start STATIC { static_proto: static_proto_start proto_name '{' | static_proto proto_item ';' - | static_proto CHECK LINK ';' { STATIC_CFG->check = STATIC_CHECK_LINK; } + | static_proto CHECK LINK bool ';' { STATIC_CFG->check_link = $4; } | static_proto stat_route ';' ; |