Bugfixes for authenticate handling and generation

This commit is contained in:
Nick Mathewson
2011-09-27 15:20:17 -04:00
parent 610cb0ecc4
commit 41b250d7ea
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1055,7 +1055,7 @@ command_process_authenticate_cell(var_cell_t *cell, or_connection_t *conn)
ERR("We're not doing a v3 handshake");
if (conn->link_proto < 3)
ERR("We're not using link protocol >= 3");
if (! conn->handshake_state->started_here)
if (conn->handshake_state->started_here)
ERR("We originated this connection");
if (conn->handshake_state->received_authenticate)
ERR("We already got one!");