From: Fabian Keil Date: Wed, 17 Jun 2009 14:51:51 +0000 (+0000) Subject: In the strftime() failure messages, put the offending header in single-quotes. X-Git-Tag: v_3_0_14~91 X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/@proxy-info-url@?a=commitdiff_plain;h=08010a2c7b2b983899e012ab38981f8f7b6fcef3;p=privoxy.git In the strftime() failure messages, put the offending header in single-quotes. --- diff --git a/parsers.c b/parsers.c index d9372112..343d4a31 100644 --- a/parsers.c +++ b/parsers.c @@ -1,4 +1,4 @@ -const char parsers_rcs[] = "$Id: parsers.c,v 1.180 2009/06/17 14:50:55 fabiankeil Exp $"; +const char parsers_rcs[] = "$Id: parsers.c,v 1.181 2009/06/17 14:51:23 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/parsers.c,v $ @@ -2338,7 +2338,7 @@ static jb_err server_last_modified(struct client_state *csp, char **header) "%a, %d %b %Y %H:%M:%S GMT", timeptr)) { log_error(LOG_LEVEL_ERROR, - "Randomizing %s failed. Keeping the header unmodified.", + "Randomizing '%s' failed. Keeping the header unmodified.", *header); return JB_ERR_OK; } @@ -3065,7 +3065,7 @@ static jb_err client_if_modified_since(struct client_state *csp, char **header) "%a, %d %b %Y %H:%M:%S GMT", timeptr)) { log_error(LOG_LEVEL_ERROR, - "Randomizing %s failed. Keeping the header unmodified.", + "Randomizing '%s' failed. Keeping the header unmodified.", *header); return JB_ERR_OK; }