diff options
author | Roger Dingledine <arma@torproject.org> | 2005-05-03 10:17:38 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-05-03 10:17:38 +0000 |
commit | 6ea839265d5c1f9e03442b79f149644e3f9d997c (patch) | |
tree | 59a46dc4dbbfbb501efbd132887dd4c4b22d8da1 /src/or/connection_edge.c | |
parent | 87850c47b06942daf278d9bbb790f306978ebfde (diff) | |
download | tor-6ea839265d5c1f9e03442b79f149644e3f9d997c.tar.gz tor-6ea839265d5c1f9e03442b79f149644e3f9d997c.zip |
remove archaic debugging aid that was probably unsafe
svn:r4176
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r-- | src/or/connection_edge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 1c86bbcd4d..bb2bb02e2e 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -76,7 +76,7 @@ int connection_edge_reached_eof(connection_t *conn) { /* it still has stuff to process. don't let it die yet. */ return 0; } - log_fn(LOG_INFO,"conn (fd %d) reached eof (stream size %d). Closing.", conn->s, (int)conn->stream_size); + log_fn(LOG_INFO,"conn (fd %d) reached eof. Closing.", conn->s); if (!conn->marked_for_close) { /* only mark it if not already marked. it's possible to * get the 'end' right around when the client hangs up on us. */ |