From: Roger Dingledine Date: Sat, 9 Jun 2007 05:28:11 +0000 (+0000) Subject: don't complain when approved-routers isn't there and we X-Git-Tag: tor-0.2.0.3-alpha~229 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8dfde75ef68afe952058aa938f53707f98b9178c;p=thirdparty%2Ftor.git don't complain when approved-routers isn't there and we don't need it. svn:r10544 --- diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 612e2917ae..b00f68dab8 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);