Skip to content

Commit e0a02cb

Browse files
committed
sipscan: bug fixes
1 parent b0ec446 commit e0a02cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/sippts/sipscan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def start(self):
306306
i = socket.gethostbyname(i)
307307
i = IP(i, make_net=True)
308308

309-
if self.ip != i and self.ip.find(",") < 1:
309+
if str(self.ip) != str(i) and self.ip.find(",") < 1:
310310
self.domain = self.ip
311311
self.forcedomain = True
312312
else:

0 commit comments

Comments
 (0)