diff options
author | Roger Dingledine <arma@torproject.org> | 2014-09-23 18:30:02 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2014-09-23 18:30:02 -0400 |
commit | ecab2616413b06754bfb110eab2bfbf58e3a57b2 (patch) | |
tree | 630e12a96e6d855aa5b27e5fb4318706b0216ea0 | |
parent | 1987157d0c1e9acb0b88156e7104fbc8a11c5932 (diff) | |
download | tor-ecab2616413b06754bfb110eab2bfbf58e3a57b2.tar.gz tor-ecab2616413b06754bfb110eab2bfbf58e3a57b2.zip |
two more typos
-rw-r--r-- | src/or/rendmid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/rendmid.c b/src/or/rendmid.c index d89cdf6bed..1bcd17bc44 100644 --- a/src/or/rendmid.c +++ b/src/or/rendmid.c @@ -188,7 +188,7 @@ rend_mid_introduce(or_circuit_t *circ, const uint8_t *request, "Unable to send INTRODUCE2 cell to Tor client."); goto err; } - /* And sent an ack down Alice's circuit. Empty body means succeeded. */ + /* And send an ack down Alice's circuit. Empty body means succeeded. */ if (relay_send_command_from_edge(0,TO_CIRCUIT(circ), RELAY_COMMAND_INTRODUCE_ACK, NULL,0,NULL)) { @@ -199,7 +199,7 @@ rend_mid_introduce(or_circuit_t *circ, const uint8_t *request, return 0; err: - /* Send the client an NACK */ + /* Send the client a NACK */ nak_body[0] = 1; if (relay_send_command_from_edge(0,TO_CIRCUIT(circ), RELAY_COMMAND_INTRODUCE_ACK, |