diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-11-22 21:59:43 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-11-22 21:59:43 +0100 |
commit | 41f8bf57c4d80cbec89b90b901afa9df4d2d76f1 (patch) | |
tree | 394b8681a159ef61fdacfc3b393d5b2d71733486 /proto/radv | |
parent | 56027b5cbd7f432d30f7fc99bcf8680c840e6163 (diff) |
Changes identifiers to avoid use of reserved ones.
Diffstat (limited to 'proto/radv')
-rw-r--r-- | proto/radv/config.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/radv/config.Y b/proto/radv/config.Y index c5b7aaee..ff70a2f7 100644 --- a/proto/radv/config.Y +++ b/proto/radv/config.Y @@ -113,7 +113,7 @@ radv_iface_finish: struct radv_iface_config *ic = RADV_IFACE; if (ic->min_ra_int == (u32) -1) - ic->min_ra_int = _MAX(ic->max_ra_int / 3, 3); + ic->min_ra_int = MAX_(ic->max_ra_int / 3, 3); if (ic->default_lifetime == (u32) -1) ic->default_lifetime = 3 * ic->max_ra_int; |