From: Nick Mathewson Date: Wed, 13 Jul 2011 16:13:12 +0000 (-0400) Subject: Resolve a warning from the bug1666 branch X-Git-Tag: tor-0.2.3.2-alpha~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8bfe89365e86dc9ed311431d3cc87af88132f34;p=thirdparty%2Ftor.git Resolve a warning from the bug1666 branch --- diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index c19e8b74d6..a4a77af929 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; }