tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit ee015d36f8dc67c5f021f76b0c23183c9b5d5a01
parent 1b63eea66cbb8793a3cff05de8d856ce3b93fc17
Author: Neel Chauhan <neel@neelc.org>
Date:   Mon,  6 Jan 2020 20:20:38 -0800

Space the a-d unsigned ints in tor_inet_aton()

Diffstat:
Msrc/lib/net/inaddr.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/net/inaddr.c b/src/lib/net/inaddr.c @@ -37,7 +37,7 @@ int tor_inet_aton(const char *str, struct in_addr *addr) { - unsigned a,b,c,d; + unsigned a, b, c, d; char more; if (tor_sscanf(str, "%3u.%3u.%3u.%3u%c", &a, &b, &c, &d, &more) != 4) return 0;