From: Tobias Mueller Date: Thu, 13 Jan 2011 15:48:36 +0000 (+0100) Subject: Fixed a "device not find" name error X-Git-Url: http://git.maemo.org/git/?p=pwnitter;a=commitdiff_plain;h=95c9e14469b6ce4dd23723e9d5d7aabf3190ca38;ds=sidebyside Fixed a "device not find" name error --- diff --git a/pwnitter.py b/pwnitter.py index faca125..6995b0a 100755 --- a/pwnitter.py +++ b/pwnitter.py @@ -41,8 +41,9 @@ class Pwnitter(dbus.service.Object): in_signature='', out_signature='') def Start(self, filename=None): # FIXME: Prevent double Start() + device = self.device if filename is None: # Then we do *not* want to read from a PCap file but rather a monitor device - self.setup_monitor(self.device) + self.setup_monitor(device) self.is_running = True try: self.cap = pcap.pcap(device)