Browse Source

don't complain when approved-routers isn't there and we
don't need it.


svn:r10544

Roger Dingledine 18 years ago
parent
commit
8dfde75ef6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/dirserv.c

+ 1 - 1
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);