tor

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

commit 2032b9b1b1385932f3f6bd731bb1c0b4f8dcee48
parent ce07b4dd918cc3a6043f4fd676ec98492c5137a9
Author: Roger Dingledine <arma@torproject.org>
Date:   Mon,  7 Aug 2017 00:22:27 -0400

fix typo in comment

Diffstat:
Msrc/common/compat.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/compat.c b/src/common/compat.c @@ -2619,7 +2619,7 @@ tor_inet_pton(int af, const char *src, void *dst) long r = strtol(src, &next, 16); if (next == NULL || next == src) { /* The 'next == src' error case can happen on versions of openbsd - * where treats "0xfoo" as an error, rather than as "0" followed by + * which treat "0xfoo" as an error, rather than as "0" followed by * "xfoo". */ return 0; }