From: hal9 Date: Sun, 10 Nov 2002 04:20:38 +0000 (+0000) Subject: Fix typo: supressed -> suppressed X-Git-Tag: v_3_1_archive_branchpoint~59 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=64ae9429ede935c365d3053ac7bf2ad6ea307424 Fix typo: supressed -> suppressed --- diff --git a/src/parsers.c b/src/parsers.c index 703c3953..2939425e 100644 --- a/src/parsers.c +++ b/src/parsers.c @@ -1,4 +1,4 @@ -const char parsers_rcs[] = "$Id: parsers.c,v 2.0 2002/06/04 14:34:21 jongfoster Exp $"; +const char parsers_rcs[] = "$Id: parsers.c,v 2.1 2002/09/11 11:23:59 oes Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/src/parsers.c,v $ @@ -40,6 +40,9 @@ const char parsers_rcs[] = "$Id: parsers.c,v 2.0 2002/06/04 14:34:21 jongfoster * * Revisions : * $Log: parsers.c,v $ + * Revision 2.1 2002/09/11 11:23:59 oes + * Fixed logging of cookies: Killed incoming cookies now logged; incoming/outgoing cookies now distinguished in log + * * Revision 2.0 2002/06/04 14:34:21 jongfoster * Moving source files to src/ * @@ -1000,7 +1003,7 @@ jb_err client_accept_encoding(struct client_state *csp, char **header) { if ((csp->action->flags & ACTION_NO_COMPRESSION) != 0) { - log_error(LOG_LEVEL_HEADER, "Supressed offer to compress content"); + log_error(LOG_LEVEL_HEADER, "Suppressed offer to compress content"); freez(*header); if (!strcmpic(csp->http->ver, "HTTP/1.1")) @@ -1040,7 +1043,7 @@ jb_err client_te(struct client_state *csp, char **header) if ((csp->action->flags & ACTION_NO_COMPRESSION) != 0) { freez(*header); - log_error(LOG_LEVEL_HEADER, "Supressed offer to compress transfer"); + log_error(LOG_LEVEL_HEADER, "Suppressed offer to compress transfer"); } return JB_ERR_OK;