From: Fabian Keil Date: Sun, 9 Jan 2011 12:08:04 +0000 (+0000) Subject: Rephrase a log message in serve(). Client request arrival should be differentiated... X-Git-Tag: v_3_0_18~361 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=433e0b9bc1c17e50196d6d55fbb2bc293f8777c7;p=privoxy.git Rephrase a log message in serve(). Client request arrival should be differentiated from closed client connections now. --- diff --git a/jcc.c b/jcc.c index 77f2112c..e1a9ab6b 100644 --- a/jcc.c +++ b/jcc.c @@ -1,4 +1,4 @@ -const char jcc_rcs[] = "$Id: jcc.c,v 1.337 2011/01/02 11:57:45 fabiankeil Exp $"; +const char jcc_rcs[] = "$Id: jcc.c,v 1.338 2011/01/02 12:17:03 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jcc.c,v $ @@ -2558,9 +2558,8 @@ static void serve(struct client_state *csp) && data_is_available(csp->cfd, (int)client_timeout) && socket_is_still_alive(csp->cfd)) { - log_error(LOG_LEVEL_CONNECT, "Client request arrived in " - "time or the client closed the connection on socket %d.", - csp->cfd); + log_error(LOG_LEVEL_CONNECT, + "Client request arrived in time on socket %d.", csp->cfd); prepare_csp_for_next_request(csp); } else