[tor-commits] [tor/master] Resolve a warning from the bug1666 branch

nickm at torproject.org nickm at torproject.org
Wed Jul 13 16:13:22 UTC 2011


commit e8bfe89365e86dc9ed311431d3cc87af88132f34
Author: Nick Mathewson <nickm at torproject.org>
Date:   Wed Jul 13 12:13:12 2011 -0400

    Resolve a warning from the bug1666 branch
---
 src/or/connection_edge.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c
index c19e8b7..a4a77af 100644
--- a/src/or/connection_edge.c
+++ b/src/or/connection_edge.c
@@ -2166,7 +2166,8 @@ connection_ap_handshake_process_socks(edge_connection_t *conn)
 
   if (socks->replylen) {
     had_reply = 1;
-    connection_write_to_buf(socks->reply, socks->replylen, TO_CONN(conn));
+    connection_write_to_buf((const char*)socks->reply, socks->replylen,
+                            TO_CONN(conn));
     socks->replylen = 0;
   }
 



More information about the tor-commits mailing list