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

shrink huge log buffer

This commit is contained in:
rofl0r 2019-02-28 13:22:13 +00:00
parent 50c079d4b4
commit 5c8f9a2922

View File

@ -107,7 +107,7 @@ static void encode_base_64(char *src, char *dest, int max_len) {
}
void proxychains_write_log(char *str, ...) {
char buff[1024*20];
char buff[1024*4];
va_list arglist;
if(!proxychains_quiet_mode) {
va_start(arglist, str);