diff options
author | Roger Dingledine <arma@torproject.org> | 2005-01-10 04:32:59 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-01-10 04:32:59 +0000 |
commit | 3370f530101a470e5f3eb5a89aa02deed6ee02d9 (patch) | |
tree | 943d7f4330c694016e6ce69d6d7bf60fadd5ae88 | |
parent | 10a81ccf189523b707fbd4016e96bd59971a87b6 (diff) | |
download | tor-3370f530101a470e5f3eb5a89aa02deed6ee02d9.tar.gz tor-3370f530101a470e5f3eb5a89aa02deed6ee02d9.zip |
it helps to use the correct name for the struct
svn:r3331
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 093b133cdf..b22e287b91 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -417,7 +417,7 @@ void directory_all_unreachable(time_t now) { AP_CONN_STATE_CIRCUIT_WAIT))) { conn->has_sent_end = 1; /* it's not connected anywhere, so no need to end */ log_fn(LOG_NOTICE,"Network down? Failing connection to '%s'.", - conn->socks_address->address); + conn->socks_request->address); connection_mark_for_close(conn); } } |