mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2024-10-31 17:18:47 +00:00
use pipe instead of pipe2
This commit is contained in:
parent
f570a66902
commit
bd07ca49b9
@ -270,7 +270,7 @@ size_t at_get_host_for_ip(ip_type ip, char* readbuf) {
|
||||
|
||||
|
||||
static void initpipe(int* fds) {
|
||||
if(pipe2(fds, 0/*O_CLOEXEC*/) == -1) {
|
||||
if(pipe(fds) == -1) {
|
||||
perror("pipe");
|
||||
exit(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user