diff options
author | Roger Dingledine <arma@torproject.org> | 2006-02-05 03:23:16 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-02-05 03:23:16 +0000 |
commit | 640882c76c987da7fee4513436c07265a2f3f0a9 (patch) | |
tree | ccdb54583401f9f5975d26c610cd1f20995d2d68 /src/or/directory.c | |
parent | 6535087845b763b79d694ada7ef4dd1e9764a77e (diff) | |
download | tor-640882c76c987da7fee4513436c07265a2f3f0a9.tar tor-640882c76c987da7fee4513436c07265a2f3f0a9.tar.gz |
clean up tabs and wide-lines from weasel's commit
svn:r5914
Diffstat (limited to 'src/or/directory.c')
-rw-r--r-- | src/or/directory.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 7fe78954c..21f444693 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -581,7 +581,10 @@ directory_send_command(connection_t *conn, const char *platform, } if (strlen(proxystring) + strlen(url) >= 4096) { - warn(LD_BUG,"Bug: squid does not like URLs longer than 4095 bytes, this one is %d bytes long: %s%s", (int)(strlen(proxystring) + strlen(url)), proxystring, url); + warn(LD_BUG, + "Bug: squid does not like URLs longer than 4095 bytes, this " + "one is %d bytes long: %s%s", + (int)(strlen(proxystring) + strlen(url)), proxystring, url); } tor_snprintf(request, sizeof(request), "%s %s", httpcommand, proxystring); |