[tor-commits] [tor/master] Let's not even talk about those errors, ok?

nickm at torproject.org nickm at torproject.org
Mon May 30 21:15:06 UTC 2016


commit 3cdc8bfa2c995b3b381e462128c0408e0ae5b3af
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon May 30 17:14:46 2016 -0400

    Let's not even talk about those errors, ok?
---
 src/test/test_dir_handle_get.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/test_dir_handle_get.c b/src/test/test_dir_handle_get.c
index e82eddf..7f92c8c 100644
--- a/src/test/test_dir_handle_get.c
+++ b/src/test/test_dir_handle_get.c
@@ -1013,7 +1013,7 @@ test_dir_handle_get_server_descriptors_d(void* data)
   conn = dir_connection_new(tor_addr_family(&MOCK_TOR_ADDR));
 
   char req_header[155]; /* XXX Why 155? What kind of number is that?? */
-  tor_snprintf(req_header, sizeof(req_handler),
+  tor_snprintf(req_header, sizeof(req_header),
                SERVER_DESC_GET("d/%s+" HEX1 "+" HEX2), hex_digest);
   tt_int_op(directory_handle_command_get(conn, req_header, NULL, 0), OP_EQ, 0);
 
@@ -1358,7 +1358,7 @@ test_dir_handle_get_server_keys_fp(void* data)
 
   conn = dir_connection_new(tor_addr_family(&MOCK_TOR_ADDR));
   char req[71];
-  tor_snprintf(req, (sizeof(req),
+  tor_snprintf(req, sizeof(req),
                      GET("/tor/keys/fp/%s"), TEST_CERT_IDENT_KEY);
   tt_int_op(directory_handle_command_get(conn, req, NULL, 0), OP_EQ, 0);
 



More information about the tor-commits mailing list