1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2026-05-15 10:03:23 +08:00

use pipe instead of pipe2

This commit is contained in:
rofl0r
2012-11-07 21:13:41 +01:00
Unverified
parent f570a66902
commit bd07ca49b9
+1 -1
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);
}