From: Fabian Keil Date: Tue, 19 May 2009 17:43:45 +0000 (+0000) Subject: Fix clang warning: Value stored to 'err' is never read. X-Git-Tag: v_3_0_13~85 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=f49585f0dec2d68097304afaf2e22c2d3ceb3c91 Fix clang warning: Value stored to 'err' is never read. --- diff --git a/gateway.c b/gateway.c index 7b601da0..d45e3e7b 100644 --- a/gateway.c +++ b/gateway.c @@ -1,4 +1,4 @@ -const char gateway_rcs[] = "$Id: gateway.c,v 1.52 2009/05/13 18:22:45 fabiankeil Exp $"; +const char gateway_rcs[] = "$Id: gateway.c,v 1.53 2009/05/16 13:27:20 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/gateway.c,v $ @@ -1080,7 +1080,6 @@ static jb_socket socks5_connect(const struct forward_spec *fwd, return(sfd); } errstr = translate_socks5_error(sbuf[1]); - err = 1; } assert(errstr != NULL);