summaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-07-15 20:26:05 +0000
committerRoger Dingledine <arma@torproject.org>2006-07-15 20:26:05 +0000
commitee5f512e13c846c9639f5a5d5a0e7fd75b595207 (patch)
tree5aa627caebc85c86a7601a49057a35c909420ada /src/or/dirserv.c
parent3d79eb52abf20c64e02dfae1c993d5c83ddf57da (diff)
downloadtor-ee5f512e13c846c9639f5a5d5a0e7fd75b595207.tar.gz
tor-ee5f512e13c846c9639f5a5d5a0e7fd75b595207.zip
parameterize the loudness of resolve_my_address(), and call things
IP addresses, not IPs. svn:r6764
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r--src/or/dirserv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index e57ec3ae56..48e01f8bcf 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -1347,7 +1347,7 @@ generate_v2_networkstatus(void)
int versioning = options->VersioningAuthoritativeDir;
const char *contact;
- if (resolve_my_address(options, &addr, &hostname)<0) {
+ if (resolve_my_address(LOG_WARN, options, &addr, &hostname)<0) {
log_warn(LD_NET, "Couldn't resolve my hostname");
goto done;
}