Parse votes with >31 flags correctly
commit414adb237bc51e0e1b7321364dd73d9b3e635733
authorNick Mathewson <nickm@torproject.org>
Mon, 17 Sep 2012 14:24:52 +0000 (17 10:24 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 17 Sep 2012 14:24:52 +0000 (17 10:24 -0400)
tree1e56a0d38253990434a94719687d121641090060
parentb1447a4312c47f13bf8ddddab09f19ee73640a3e
Parse votes with >31 flags correctly

We were doing (1<<p) to generate a flag at position p, but we should
have been doing (U64_LITERAL(1)<<p).

Fixes bug 6861; bugfix on 0.2.0.3-alpha; reported pseudonymously.
changes/bug6853 [new file with mode: 0644]
src/or/routerparse.c