From 17a311d9a00fe8ba9fc6288eafeb00e4bc1e8c12 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Aug 2003 19:48:22 +0000 Subject: [PATCH] Fix typo: ports are 16 bits. svn:r374 --- src/or/circuit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/circuit.c b/src/or/circuit.c index 3ba0dad5e8..a3fd62d295 100644 --- a/src/or/circuit.c +++ b/src/or/circuit.c @@ -760,7 +760,7 @@ int circuit_send_next_onion_skin(circuit_t *circ) { cell.length = RELAY_HEADER_SIZE + 6 + DH_ONIONSKIN_LEN; *(uint32_t*)(cell.payload+RELAY_HEADER_SIZE) = htonl(hop->addr); - *(uint32_t*)(cell.payload+RELAY_HEADER_SIZE+4) = htons(hop->port); + *(uint16_t*)(cell.payload+RELAY_HEADER_SIZE+4) = htons(hop->port); if(onion_skin_create(router->pkey, &(hop->handshake_state), cell.payload+RELAY_HEADER_SIZE+6) < 0) { log_fn(LOG_INFO,"onion_skin_create failed."); return -1;