mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2025-09-03 06:16:56 +00:00
fix missing bracket in solaris codepath (#589)
This commit is contained in:

committed by
GitHub

parent
1760c93474
commit
ce07eaa191
@ -767,7 +767,7 @@ HOOKFUNC(int, connect, int sock, const struct sockaddr *addr, unsigned int len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef IS_SOLARIS
|
#ifdef IS_SOLARIS
|
||||||
HOOKFUNC(int, __xnet_connect, int sock, const struct sockaddr *addr, unsigned int len)
|
HOOKFUNC(int, __xnet_connect, int sock, const struct sockaddr *addr, unsigned int len) {
|
||||||
return connect(sock, addr, len);
|
return connect(sock, addr, len);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user