mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
Be more specific when complaining about bit masks.
This commit is contained in:
parent
1b285e5cce
commit
776c10059d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144687
@ -2592,12 +2592,12 @@ config_pipe(int ac, char **av)
|
||||
else if (p16 != NULL) {
|
||||
if (a > 0xFFFF)
|
||||
errx(EX_DATAERR,
|
||||
"mask: must be 16 bit");
|
||||
"port mask must be 16 bit");
|
||||
*p16 = (uint16_t)a;
|
||||
} else {
|
||||
if (a > 0xFF)
|
||||
errx(EX_DATAERR,
|
||||
"mask: must be 8 bit");
|
||||
"proto mask must be 8 bit");
|
||||
p.fs.flow_mask.proto = (uint8_t)a;
|
||||
}
|
||||
if (a != 0)
|
||||
|
Loading…
Reference in New Issue
Block a user