diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2015-12-29 17:12:47 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2015-12-29 17:12:47 +0100 |
commit | e691d16a63ce40bc56ecbc970e8118686d4b0148 (patch) | |
tree | 22d0ea12cedd4f69c0d10610bf475b3b85936fb2 /conf | |
parent | 74c838a87000ca800e8b3f265340c1317989a04a (diff) |
Explicit ip4_addr / ip6_addr printf support
Diffstat (limited to 'conf')
-rw-r--r-- | conf/confbase.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index 06698833..9b4f54e9 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -178,7 +178,7 @@ pxlen4: } | ':' IP4 { $$ = ip4_masklen($2); - if ($$ == 255) cf_error("Invalid netmask %I", $2); /* XXXX */ + if ($$ == 255) cf_error("Invalid netmask %I4", $2); } ; |