fix typo, add log message

svn:r8357
This commit is contained in:
Roger Dingledine 2006-09-09 19:16:07 +00:00
parent 3fcbdd3e01
commit 5f6351ceb3
2 changed files with 3 additions and 1 deletions

View File

@ -1796,7 +1796,7 @@ get_interface_address(uint32_t *addr)
if (connect(sock,(struct sockaddr *)&target_addr,sizeof(target_addr))<0) {
int e = tor_socket_errno(sock);
log_warn(LD_NET, "connnect() failed: %s", tor_socket_strerror(e));
log_warn(LD_NET, "connect() failed: %s", tor_socket_strerror(e));
goto err;
}

View File

@ -978,6 +978,8 @@ router_new_address_suggestion(const char *suggestion)
}
addr = ntohl(in.s_addr);
log_debug(LD_DIR, "Got X-Your-Address-Is: %s.", suggestion);
if (resolve_my_address(LOG_INFO, get_options(), &cur, NULL) >= 0) {
/* We're all set -- we already know our address. Great. */
last_guessed_ip = cur; /* store it in case we need it later */