Explorar el Código

tolerate a mal-formed or unrecognized tor version in the state file.

svn:r5696
Roger Dingledine hace 19 años
padre
commit
839111b85a
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/or/config.c

+ 2 - 2
src/or/config.c

@@ -3532,8 +3532,8 @@ or_state_validate(or_state_t *old_state, or_state_t *state)
     return -1;
   }
   if (tor_version_parse(state->TorVersion, &v)) {
-    warn(LD_GENERAL, "Unable to parse Tor version '%s'", state->TorVersion);
-    return -1;
+    warn(LD_GENERAL, "Can't parse Tor version '%s' from your state file. "
+         "Proceeding anyway.", state->TorVersion);
   }
   return 0;
 }