mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Wrap long line.
MFC after: 2 weeks
This commit is contained in:
parent
41b6083752
commit
d832ded1a1
1 changed files with 2 additions and 1 deletions
|
|
@ -606,7 +606,8 @@ check_ipfw_struct(struct ip_fw *rule, int size)
|
|||
case O_SETFIB:
|
||||
if (cmdlen != F_INSN_SIZE(ipfw_insn))
|
||||
goto bad_size;
|
||||
if ((cmd->arg1 != IP_FW_TABLEARG) && (cmd->arg1 >= rt_numfibs)) {
|
||||
if ((cmd->arg1 != IP_FW_TABLEARG) &&
|
||||
(cmd->arg1 >= rt_numfibs)) {
|
||||
printf("ipfw: invalid fib number %d\n",
|
||||
cmd->arg1);
|
||||
return EINVAL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue