Skip to content

1.9.5

Compare
Choose a tag to compare
@Neustradamus Neustradamus released this 09 Jan 09:55
· 571 commits to master since this release
fixing logic in the IPv6 forwarding setting check

From akarl10 on GitHub:

	(value != 1 || value != 2) is always true
	should be (value != 1 && value != 2)