diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-02-22 20:33:47 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-02-22 20:33:47 +0000 |
commit | 7589765ae94291f1bc6ed9c7bd4dd24b7c9b9f09 (patch) | |
tree | 277e056c0ef85b4b816847c725301cbd82ba4ca7 /src/or/dns.c | |
parent | e7db789e82a7a2edc5c7e8230265f8ec83021f69 (diff) | |
download | tor-7589765ae94291f1bc6ed9c7bd4dd24b7c9b9f09.tar.gz tor-7589765ae94291f1bc6ed9c7bd4dd24b7c9b9f09.zip |
r14401@tombo: nickm | 2008-02-22 15:33:42 -0500
Fix a really stupid parthensis error noticed by mwenge.
svn:r13681
Diffstat (limited to 'src/or/dns.c')
-rw-r--r-- | src/or/dns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index a617130bdf..bb932450f5 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -156,7 +156,7 @@ evdns_log_cb(int warn, const char *msg) } if (!strcmpstart(msg, "Nameserver ") && (cp=strstr(msg, " has failed: "))) { char *ns = tor_strndup(msg+11, cp-(msg+11)); - const char *err = strchr(cp, ':'+2); + const char *err = strchr(cp, ':')+2; tor_assert(err); /* Don't warn about a single failed nameserver; we'll warn with 'all * nameservers have failed' if we're completely out of nameservers; |