Explorar o código

don't warn if stats/bridge-stats is missing

if we try to read it to publish stats and it's not there,
that means there are no stats to publish.

reported by swisstorexit.
Roger Dingledine %!s(int64=14) %!d(string=hai) anos
pai
achega
fd5eb23c29
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/or/geoip.c

+ 1 - 1
src/or/geoip.c

@@ -1237,7 +1237,7 @@ load_bridge_stats(time_t now)
   if (check_private_dir(statsdir, CPD_CREATE) < 0)
     goto done;
   fname = get_datadir_fname2("stats", "bridge-stats");
-  contents = read_file_to_str(fname, 0, NULL);
+  contents = read_file_to_str(fname, RFTS_IGNORE_MISSING, NULL);
   if (contents) {
     controller_str = parse_bridge_stats_controller(contents, now);
     if (controller_str) {