aboutsummaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-06-09 05:28:11 +0000
committerRoger Dingledine <arma@torproject.org>2007-06-09 05:28:11 +0000
commit8dfde75ef68afe952058aa938f53707f98b9178c (patch)
tree82bffb37fb22e876f899ad393aed0b5936391875 /src/or/dirserv.c
parenteebeda2c7123e69c7c3fb5e31a6293cf01245ba0 (diff)
downloadtor-8dfde75ef68afe952058aa938f53707f98b9178c.tar
tor-8dfde75ef68afe952058aa938f53707f98b9178c.tar.gz
don't complain when approved-routers isn't there and we
don't need it. svn:r10544
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 612e2917a..b00f68dab 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -183,7 +183,7 @@ dirserv_load_fingerprint_file(void)
log_info(LD_GENERAL,
"Reloading approved fingerprints from \"%s\"...", fname);
- cf = read_file_to_str(fname, 0, NULL);
+ cf = read_file_to_str(fname, RFTS_IGNORE_MISSING, NULL);
if (!cf) {
if (options->NamingAuthoritativeDir) {
log_warn(LD_FS, "Cannot open fingerprint file '%s'. Failing.", fname);