Browse Source

it helps to use the correct name for the struct

svn:r3331
Roger Dingledine 21 years ago
parent
commit
3370f53010
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/main.c

+ 1 - 1
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);
   }
 }