Explorar o código

Fix bug in state parsing

svn:r4681
Nick Mathewson %!s(int64=19) %!d(string=hai) anos
pai
achega
d90841ff5a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/or/circuitbuild.c

+ 1 - 1
src/or/circuitbuild.c

@@ -1853,7 +1853,7 @@ helper_nodes_parse_state(or_state_t *state, int set, const char **err)
       }
       strlcpy(node->nickname, smartlist_get(args,0), MAX_NICKNAME_LEN+1);
       if (base16_decode(node->identity, DIGEST_LEN, smartlist_get(args,1),
-                        strlen(smartlist_get(args,11)))<0) {
+                        strlen(smartlist_get(args,1)))<0) {
         *err = "Bad hex digest for HelperNode";
         break;
       }