mirror of
https://github.com/haad/proxychains.git
synced 2026-09-14 11:05:48 +05:00
Update libproxychains.c
Fix redundant parenthesis.
This commit is contained in:
parent
5dd8450452
commit
99af45703e
@ -430,7 +430,7 @@ int connect(int sock, const struct sockaddr *addr, socklen_t len) {
|
||||
|
||||
// more specific first
|
||||
for(i = 0; i < num_dnats && !remote_dns_connect && !dnat; i++)
|
||||
if((dnats[i].orig_dst.s_addr == p_addr_in->s_addr))
|
||||
if(dnats[i].orig_dst.s_addr == p_addr_in->s_addr)
|
||||
if(dnats[i].orig_port && (dnats[i].orig_port == port))
|
||||
dnat = &dnats[i];
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user