From f247853f39e0549f3dee2286a20867e401f3c7e9 Mon Sep 17 00:00:00 2001 From: JohnHay Date: Mon, 20 Dec 2021 08:58:25 +0200 Subject: [PATCH] Changed one place where the Exception text was still tproxy to ipfw. --- sshuttle/methods/ipfw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshuttle/methods/ipfw.py b/sshuttle/methods/ipfw.py index bc91f48..5d94750 100644 --- a/sshuttle/methods/ipfw.py +++ b/sshuttle/methods/ipfw.py @@ -216,7 +216,7 @@ class Method(BaseMethod): def restore_firewall(self, port, family, udp, user): if family not in [socket.AF_INET]: raise Exception( - 'Address family "%s" unsupported by tproxy method' + 'Address family "%s" unsupported by ipfw method' % family_to_string(family)) ipfw_noexit('delete', '1')