mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2025-01-03 01:46:28 +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);
|
||||
vsnprintf(buff, sizeof(buff), str, arglist);
|
||||
va_end(arglist);
|
||||
fprintf(stderr, "%s", buff);
|
||||
fflush(stderr);
|
||||
fprintf(stdout, "%s", buff);
|
||||
fflush(stdout);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user