1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2025-01-06 21:02:55 +08:00

use pipe instead of pipe2

This commit is contained in:
rofl0r 2012-11-07 21:13:41 +01:00
parent f570a66902
commit bd07ca49b9

View File

@ -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);
}