diff options
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index ec6f29916..2b3f04745 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -183,6 +183,7 @@ rend_client_introduction_acked(circuit_t *circ, const char *request, size_t request_len) { circuit_t *rendcirc; + (void) request; // XXXX Use this. if (circ->purpose != CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT) { log_warn(LD_PROTOCOL, @@ -342,6 +343,8 @@ int rend_client_rendezvous_acked(circuit_t *circ, const char *request, size_t request_len) { + (void) request; + (void) request_len; /* we just got an ack for our establish-rendezvous. switch purposes. */ if (circ->purpose != CIRCUIT_PURPOSE_C_ESTABLISH_REND) { log_warn(LD_PROTOCOL,"Got a rendezvous ack when we weren't expecting one. " |