summaryrefslogtreecommitdiff
path: root/src/or/connection.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-09-09 19:20:27 +0000
committerRoger Dingledine <arma@torproject.org>2006-09-09 19:20:27 +0000
commit9af3175687686841f25cab2fe7e1ade0c66a1ff9 (patch)
tree1ab79e1904c1597180c5b6f72a025937fe0d3235 /src/or/connection.c
parent5f6351ceb3d518a19fcf0a2927b140a6dc3d1cd3 (diff)
downloadtor-9af3175687686841f25cab2fe7e1ade0c66a1ff9.tar.gz
tor-9af3175687686841f25cab2fe7e1ade0c66a1ff9.zip
parameterize the loudness of get_interface_address()
svn:r8358
Diffstat (limited to 'src/or/connection.c')
-rw-r--r--src/or/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c
index 6fc68263ba..88346f8aad 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -1999,7 +1999,7 @@ client_check_address_changed(int sock)
uint32_t *ip;
if (!last_interface_ip)
- get_interface_address(&last_interface_ip);
+ get_interface_address(LOG_INFO, &last_interface_ip);
if (!outgoing_addrs)
outgoing_addrs = smartlist_create();
@@ -2017,7 +2017,7 @@ client_check_address_changed(int sock)
/* Uh-oh. We haven't connected from this address before. Has the interface
* address changed? */
- if (get_interface_address(&iface_ip)<0)
+ if (get_interface_address(LOG_INFO, &iface_ip)<0)
return;
ip = tor_malloc(sizeof(uint32_t));
*ip = ip_out;