Enclose a long multi-line single conditional statement in braces to

improve legibility and aesthetics.

MFC after:	1 week
This commit is contained in:
Cy Schubert 2019-06-12 11:06:51 +00:00
parent 1577943439
commit 61208bb681
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=348985

View File

@ -211,7 +211,7 @@ vnet_ipf_init(void)
else
defpass = "no-match -> block";
if (IS_DEFAULT_VNET(curvnet))
if (IS_DEFAULT_VNET(curvnet)) {
printf("%s initialized. Default = %s all, Logging = %s%s\n",
ipfilter_version, defpass,
#ifdef IPFILTER_LOG
@ -225,6 +225,7 @@ vnet_ipf_init(void)
""
#endif
);
}
}
VNET_SYSINIT(vnet_ipf_init, SI_SUB_PROTO_FIREWALL, SI_ORDER_THIRD,
vnet_ipf_init, NULL);