diff options
author | Roger Dingledine <arma@torproject.org> | 2017-08-07 00:22:27 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2017-08-07 00:22:27 -0400 |
commit | 2032b9b1b1385932f3f6bd731bb1c0b4f8dcee48 (patch) | |
tree | 32199658a63df3ddd6d41ad24597bdee467ff5a7 /src/common/compat.c | |
parent | ce07b4dd918cc3a6043f4fd676ec98492c5137a9 (diff) | |
download | tor-2032b9b1b1385932f3f6bd731bb1c0b4f8dcee48.tar.gz tor-2032b9b1b1385932f3f6bd731bb1c0b4f8dcee48.zip |
fix typo in comment
Diffstat (limited to 'src/common/compat.c')
-rw-r--r-- | src/common/compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index f5991a640f..836b3813e0 100644 --- 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; } |