+ Use sys.platform.startswith("freebsd") instead of matching just freebsd10.

+ This means support for any freebsd version (note that I only tested 11-CURRENT and 9)
This commit is contained in:
Mike C 2015-04-27 02:31:58 +01:00
parent 1c5277b21f
commit b942f98f37
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ if sys.platform == "linux2":
elif sys.platform == "darwin":
from . import osx
resolver = osx.Resolver
elif sys.platform == "freebsd10":
elif sys.platform.startswith("freebsd"):
from . import osx
resolver = osx.Resolver
elif sys.platform == "win32":

View File

@ -13,7 +13,7 @@ def lookup(address, port, s):
if "ESTABLISHED:ESTABLISHED" in i and spec in i:
s = i.split()
if len(s) > 4:
if sys.platform == "freebsd10":
if sys.platform.startswith("freebsd"):
# strip parentheses for FreeBSD pfctl
s = s[3][1:-1].split(":")
else: