mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2025-01-06 23:58:52 +00:00
output should be sent to stdout instead of stderr
This commit is contained in:
parent
672bf7661d
commit
9a836c6b36
@ -112,8 +112,8 @@ void proxychains_write_log(char *str, ...) {
|
|||||||
va_start(arglist, str);
|
va_start(arglist, str);
|
||||||
vsnprintf(buff, sizeof(buff), str, arglist);
|
vsnprintf(buff, sizeof(buff), str, arglist);
|
||||||
va_end(arglist);
|
va_end(arglist);
|
||||||
fprintf(stderr, "%s", buff);
|
fprintf(stdout, "%s", buff);
|
||||||
fflush(stderr);
|
fflush(stdout);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user