[or-cvs] r12551: if we think our ip address just changed, log what we thought (tor/trunk/src/or)
arma at seul.org
arma at seul.org
Thu Nov 22 01:38:54 UTC 2007
Author: arma
Date: 2007-11-21 20:38:54 -0500 (Wed, 21 Nov 2007)
New Revision: 12551
Modified:
tor/trunk/src/or/config.c
Log:
if we think our ip address just changed, log what we thought it
changed *to*.
Modified: tor/trunk/src/or/config.c
===================================================================
--- tor/trunk/src/or/config.c 2007-11-22 00:44:08 UTC (rev 12550)
+++ tor/trunk/src/or/config.c 2007-11-22 01:38:54 UTC (rev 12551)
@@ -2056,7 +2056,9 @@
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) {
More information about the tor-commits
mailing list