summaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-02-06 12:46:46 +0000
committerRoger Dingledine <arma@torproject.org>2008-02-06 12:46:46 +0000
commitf76cdc1a611fdbc134cabd1e0d81e7d9d8fd3648 (patch)
treefd3b27550508c002a7a663e2d6f6e3f3a7188458 /src/or/dirserv.c
parentc054f90f029915679db24d61559a7bdde1a9414b (diff)
downloadtor-f76cdc1a611fdbc134cabd1e0d81e7d9d8fd3648.tar.gz
tor-f76cdc1a611fdbc134cabd1e0d81e7d9d8fd3648.zip
misc small fixes
svn:r13403
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r--src/or/dirserv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 224554d155..4e495c286a 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -204,7 +204,7 @@ dirserv_load_fingerprint_file(void)
tor_free(fname);
return -1;
} else {
- log_info(LD_FS, "Cannot open fingerprint file '%s'. Returning.", fname);
+ log_info(LD_FS, "Cannot open fingerprint file '%s'. That's ok.", fname);
tor_free(fname);
return 0;
}
@@ -2517,7 +2517,7 @@ dirserv_get_networkstatus_v2_fingerprints(smartlist_t *result,
}
smartlist_sort_digests(result);
if (smartlist_len(result) == 0)
- log_warn(LD_DIRSERV,
+ log_info(LD_DIRSERV,
"Client requested 'all' network status objects; we have none.");
} else if (!strcmpstart(key, "fp/")) {
dir_split_resource_into_fingerprints(key+3, result, NULL, 1, 1);