Skip to content
This repository has been archived by the owner on Sep 28, 2021. It is now read-only.

Commit

Permalink
Merge pull request #62 from favoretti/master
Browse files Browse the repository at this point in the history
Fixed ios renderer bug (typo)
  • Loading branch information
job committed Apr 14, 2016
2 parents 091b078 + e3dffc3 commit e79f1e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aclhound/targets/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def afi_match(host):
if type(s_port) == tuple:
line += " range %s %s" % (s_port[0], s_port[1])
elif not s_port == "any":
line += " eq %s" % str(s_port[0])
line += " eq %s" % str(s_port)

if d_host == "any":
line += " any"
Expand Down

0 comments on commit e79f1e9

Please sign in to comment.