misc-progs: Cleanup chain creation of wirelessctrl.

This changes the behaviour of the wirelessctrl binary
that will no longer create useless rules in the WIRELESSINPUT
and WIRELESSFORWARD chains that have no use at all.

So we keep this chain empty if /var/ipfire/wireless/nodrop
is existant.
This commit is contained in:
Michael Tremer
2010-04-23 14:18:01 +02:00
parent bf137f5bb6
commit 8cc93ee11f

View File

@@ -101,11 +101,11 @@ int main(void)
exit(0);
}
if (!(fd = fopen(CONFIG_ROOT "/wireless/nodrop", "r")))
{
if ((fd = fopen(CONFIG_ROOT "/wireless/nodrop", "r")))
return 0;
/* register exit handler to ensure the block rule is always present */
atexit(exithandler);
}
if (!(fd = fopen(CONFIG_ROOT "/wireless/config", "r")))
{