1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2026-05-14 01:12:34 +08:00

Fix bug in hostsreader

hostsreader_get() used to assign the IP address to both `name` and `ip`
fields in `struct hostsreader`, which led to proxychains effectively
ignoring the contents of /etc/hosts.
This commit is contained in:
Alexander Batischev
2016-02-01 20:58:59 +03:00
committed by rofl0r
Unverified
parent 672bf7661d
commit f85cecdabe
+1 -1
View File
@@ -44,7 +44,7 @@ int hostsreader_get(struct hostsreader *ctx, char* buf, size_t bufsize) {
l--;
}
if(!l || !*p) continue;
ctx->name = buf;
ctx->name = p;
while(*p && !isspace(*p) && l) {
p++;
l--;