From: Fabian Keil <fk@fabiankeil.de>
Date: Sun, 5 Jul 2009 13:24:04 +0000 (+0000)
Subject: Mention the tainted socket in mark_server_socket_tainted().
X-Git-Tag: v_3_0_14~60
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/developer-manual/@default-cgi@/static/@default-cgi@send-stylesheet?a=commitdiff_plain;h=83aaee02fdd7ff7a778f0410a311fdc68f14bcc2;p=privoxy.git

Mention the tainted socket in mark_server_socket_tainted().
---

diff --git a/jcc.c b/jcc.c
index fa3731bb..85be466c 100644
--- a/jcc.c
+++ b/jcc.c
@@ -1,4 +1,4 @@
-const char jcc_rcs[] = "$Id: jcc.c,v 1.261 2009/07/05 12:00:53 fabiankeil Exp $";
+const char jcc_rcs[] = "$Id: jcc.c,v 1.262 2009/07/05 12:02:25 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
@@ -1142,7 +1142,7 @@ static void mark_server_socket_tainted(struct client_state *csp)
    if ((csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE))
    {
       log_error(LOG_LEVEL_CONNECT,
-         "Marking the connection to the server tainted.");
+         "Marking the server socket %d tainted.", csp->sfd);
       csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
    }
 }