From: Roger Dingledine Date: Thu, 22 Nov 2007 01:38:54 +0000 (+0000) Subject: if we think our ip address just changed, log what we thought it X-Git-Tag: tor-0.2.0.13-alpha~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e40510f024cf418350ec4b6b1dd26457a80fe7c;p=thirdparty%2Ftor.git if we think our ip address just changed, log what we thought it changed *to*. svn:r12551 --- diff --git a/src/or/config.c b/src/or/config.c index d23ad9cbe1..a0cafb6a98 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2056,7 +2056,9 @@ resolve_my_address(int warn_severity, or_options_t *options, if (last_resolved_addr && last_resolved_addr != *addr_out) { /* Leave this as a notice, regardless of the requested severity, * at least until dynamic IP address support becomes bulletproof. */ - log_notice(LD_NET, "Your IP address seems to have changed. Updating."); + log_notice(LD_NET, + "Your IP address seems to have changed to %s. Updating.", + tmpbuf); ip_address_changed(0); } if (last_resolved_addr != *addr_out) {