diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-09-17 13:35:37 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-09-17 13:35:37 +0200 |
commit | f4c6ca8c9c7ca7c0d481e6059396beed6adc768d (patch) | |
tree | 546a2c3bea59331c83de09a80c6a575353effb28 /nest/config.Y | |
parent | 0781e9c62cd34175eb4e3bc61ffe785d08538727 (diff) | |
download | bird-f4c6ca8c9c7ca7c0d481e6059396beed6adc768d.tar bird-f4c6ca8c9c7ca7c0d481e6059396beed6adc768d.zip |
Fixes preference bounds.
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/config.Y b/nest/config.Y index ad45a0d..a2c44ab 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -132,7 +132,7 @@ proto_name: proto_item: /* EMPTY */ | PREFERENCE expr { - if ($2 < 0 || $2 > 255) cf_error("Invalid preference"); + if ($2 < 0 || $2 > 0xFFFF) cf_error("Invalid preference"); this_proto->preference = $2; } | DISABLED bool { this_proto->disabled = $2; } |